Changeset 114 for trunk/UCore.pas
- Timestamp:
- May 1, 2016, 11:13:57 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UCore.pas
r105 r114 10 10 UXmlClasses, UHtmlClasses, UUtils, UApplicationInfo, UHTTPServerTCP, 11 11 UHTTPSessionFile, UUser, SpecializedList, Registry, 12 UModularSystem, UWebSession ;12 UModularSystem, UWebSession, LazUTF8; 13 13 14 14 const … … 144 144 DatabasePassword := ReadString(SectionDatabase, 'DatabasePassword', 'password'); 145 145 FormatHTML := ReadBool(SectionGeneral, 'FormatHTML', False); 146 //Core.WebApp1.LogException := notReadBool(SectionGeneral, 'ShowException', False);146 WebApp1.LogException := ReadBool(SectionGeneral, 'ShowException', False); 147 147 NetworkAddress := ReadString(SectionHTTPServer, 'NetworkAddress', 'localhost'); 148 148 NetworkPort := ReadInteger(SectionHTTPServer, 'NetworkPort', 80); … … 170 170 WriteString(SectionDatabase, 'DatabasePassword', DatabasePassword); 171 171 WriteBool(SectionGeneral, 'FormatHTML', FormatHTML); 172 //WriteBool(SectionGeneral, 'ShowException', not Core.WebApp1.LogException);172 //WriteBool(SectionGeneral, 'ShowException', not WebApp1.LogException); 173 173 WriteString(SectionHTTPServer, 'NetworkAddress', NetworkAddress); 174 174 WriteInteger(SectionHTTPServer, 'NetworkPort', NetworkPort);
Note:
See TracChangeset
for help on using the changeset viewer.