Hi to all.
I would only report two small bug in 3.0.11 , don't know if alredy revised.
1) in GalleryPreConfig.vb - Line 51 :
ctlModule.UpdateModuleSetting(ModuleId, "Skin", "DotNetNuke")
instead of
ctlModule.UpdateModuleSetting(ModuleId, "Theme", "DotNetNuke")
in Components/Configuration/Config.vb - Line 897 - :
mTheme = GetValue(settings("Skin"), mTheme)
istead of
mTheme = GetValue(settings("Theme"), mTheme).
2) In controls/ControlUpload.ascx at EOF
double needless TBODY / TABLE tags closure
I hope this will be helpfull.
Great Work !
Another one...
In Components/Utilities/XML.vb - line 272 and 296
Return CDate(iterator.Current.Value())
Problem with date cast / globalization cultrue
i have found this code for fix problem but i don't know if it is the best...
Imports System.Globalization
Return DateTime.ParseExact(iterator.Current.Value(), "dd/MM/yyyy", System.Globalization.CultureInfo.CurrentCulture)
Sorry for my poor english.