File tree 3 files changed +16
-7
lines changed
3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 187
187
<Content Include =" AlpacaFormBuilder.ascx" />
188
188
<Content Include =" Edit.ascx" />
189
189
<Content Include =" EditData.ascx" />
190
+ <Content Include =" images\edit.png" />
191
+ <Content Include =" images\editcontent2.png" />
192
+ <Content Include =" images\editsettings2.png" />
193
+ <Content Include =" images\edittemplate.png" />
194
+ <Content Include =" images\exchange.png" />
195
+ <Content Include =" images\formbuilder.png" />
196
+ <Content Include =" images\help.png" />
197
+ <Content Include =" images\icon_extensions.png" />
198
+ <Content Include =" images\settings.gif" />
199
+ <Content Include =" images\settings.png" />
190
200
<Content Include =" js\alpaca-bundle.js" />
191
201
<Content Include =" js\alpaca-bundle.min.js" >
192
202
<DependentUpon >alpaca-bundle.js</DependentUpon >
246
256
<ItemGroup >
247
257
<Content Include =" App_LocalResources\AlpacaFormBuilder.ascx.resx" />
248
258
</ItemGroup >
249
- <ItemGroup >
250
- <Content Include =" bundleconfig.json" />
251
- </ItemGroup >
252
259
<PropertyGroup >
253
260
<VisualStudioVersion Condition =" '$(VisualStudioVersion)' == ''" >10.0</VisualStudioVersion >
254
261
<VSToolsPath Condition =" '$(VSToolsPath)' == ''" >$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath >
Original file line number Diff line number Diff line change 3
3
<package name="OpenForm" type="Module" version="03.05.00">
4
4
<friendlyName>OpenForm</friendlyName>
5
5
<description>OpenForm module. Requires OpenContent v3.4.5 or higher</description>
6
- <iconFile>~/Images/icon_extensions.png</iconFile>
6
+ <iconFile>~/DesktopModules/OpenForm/ Images/icon_extensions.png</iconFile>
7
7
<owner>
8
8
<name>Satrabel.be</name>
9
9
<organization>Satrabel.be</organization>
Original file line number Diff line number Diff line change @@ -102,9 +102,11 @@ private JToken GetOptions()
102
102
103
103
// language options
104
104
optionsFilename = Path . GetDirectoryName ( templateFilename ) + "\\ " + $ "options.{ DnnLanguageUtils . GetCurrentCultureCode ( ) } .json";
105
- JToken languageOptionsJson = JsonUtils . GetJsonFromFile ( optionsFilename ) ;
106
- optionsJson = optionsJson . JsonMerge ( languageOptionsJson ) ;
107
-
105
+ if ( File . Exists ( optionsFilename ) )
106
+ {
107
+ JToken languageOptionsJson = JsonUtils . GetJsonFromFile ( optionsFilename ) ;
108
+ optionsJson = optionsJson . JsonMerge ( languageOptionsJson ) ;
109
+ }
108
110
return optionsJson ;
109
111
}
110
112
You can’t perform that action at this time.
0 commit comments