Changeset 114 for trunk/Modules/Portal


Ignore:
Timestamp:
May 1, 2016, 11:13:57 PM (9 years ago)
Author:
chronos
Message:
  • Fixed: Build under FPC 3.0 and Lazarus 1.6.
  • Modified: Updated internet tariffs page.
Location:
trunk/Modules/Portal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Portal/UModulePortal.pas

    r108 r114  
    253253
    254254      TitleTag := THtmlString.Create;
    255       TitleTag.Text := ShowHeader(ASession);
     255      //TitleTag.Text := ShowHeader(ASession);
    256256      HtmlDocument.Body.SubItems.Insert(0, TitleTag);
    257257      TitleTag := THtmlString.Create;
    258258      TitleTag.Text := ShowFooter(ASession);
    259       HtmlDocument.Body.SubItems.Add(TitleTag);
     259      HtmlDocument.Body.SubItems.Insert(0, TitleTag);
    260260      //Page.Page.OnProduce(HandlerData);
    261261      HtmlDocument.Title := Page.Caption;
     
    275275function TModulePortal.ShowFooter(Session: TWebSession): string;
    276276begin
     277  Result := '';
    277278  //Time := Round(Now - $ScriptTimeStart, 2);
    278279  Result := Result + '<div id="Footer">' +
  • trunk/Modules/Portal/UPagePortal.pas

    r107 r114  
    231231    // Show pannels
    232232    //if(IsInternetAddr()) echo('Internet'); else echo('LAN');
    233     //$Output .= $this->InfoBar();
     233    // $Output .= $this->InfoBar();
    234234    Output := Output + '<table id="MainTable"><tr>';
    235235    Session.Database.Select(DbRows, 'PanelColumn', '*');
     
    275275function TWebPagePortal.OnlineHostList: string;
    276276begin
    277 
     277  Result := '';
    278278end;
    279279
    280280function TWebPagePortal.UserPanel: string;
    281281begin
    282 
     282  Result := '';
    283283end;
    284284
     
    299299function TWebPagePortal.WebcamPanel: string;
    300300begin
    301 
     301  Result := '';
    302302end;
    303303
Note: See TracChangeset for help on using the changeset viewer.