Changeset 114 for trunk/UCore.pas


Ignore:
Timestamp:
May 1, 2016, 11:13:57 PM (8 years ago)
Author:
chronos
Message:
  • Fixed: Build under FPC 3.0 and Lazarus 1.6.
  • Modified: Updated internet tariffs page.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UCore.pas

    r105 r114  
    1010  UXmlClasses, UHtmlClasses, UUtils, UApplicationInfo, UHTTPServerTCP,
    1111  UHTTPSessionFile, UUser, SpecializedList, Registry,
    12   UModularSystem, UWebSession;
     12  UModularSystem, UWebSession, LazUTF8;
    1313
    1414const
     
    144144    DatabasePassword := ReadString(SectionDatabase, 'DatabasePassword', 'password');
    145145    FormatHTML := ReadBool(SectionGeneral, 'FormatHTML', False);
    146     //Core.WebApp1.LogException := not ReadBool(SectionGeneral, 'ShowException', False);
     146    WebApp1.LogException := ReadBool(SectionGeneral, 'ShowException', False);
    147147    NetworkAddress := ReadString(SectionHTTPServer, 'NetworkAddress', 'localhost');
    148148    NetworkPort := ReadInteger(SectionHTTPServer, 'NetworkPort', 80);
     
    170170    WriteString(SectionDatabase, 'DatabasePassword', DatabasePassword);
    171171    WriteBool(SectionGeneral, 'FormatHTML', FormatHTML);
    172     //WriteBool(SectionGeneral, 'ShowException', not Core.WebApp1.LogException);
     172    //WriteBool(SectionGeneral, 'ShowException', not WebApp1.LogException);
    173173    WriteString(SectionHTTPServer, 'NetworkAddress', NetworkAddress);
    174174    WriteInteger(SectionHTTPServer, 'NetworkPort', NetworkPort);
Note: See TracChangeset for help on using the changeset viewer.