Ignore:
Timestamp:
Jun 7, 2022 6:41:24 AM (23 months ago)
Author:
anonymous
Message:

Add App param ‘template_ext’ used to inform services where to find header and footer templates. Minor fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/logs.php

    r763 r767  
    148148$page->calculate();
    149149
    150 include 'header.ihtml';
     150include 'header.' . $app->getParam('template_ext');
    151151if ('output' == $main_template) {
    152152    printLog($tmp_prefs->get('log_file'));
     
    154154    include $main_template;
    155155}
    156 include 'footer.ihtml';
     156include 'footer.' . $app->getParam('template_ext');
    157157
    158158
Note: See TracChangeset for help on using the changeset viewer.