Changeset 2699


Ignore:
Timestamp:
Oct 10, 2008, 1:14:43 AM (16 years ago)
Author:
rvelices
Message:
  • removed unused var from template
  • removed 2 unused rules from public content.css
  • index.php improvement (as in picture) - the log is done after sending first output to client
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/template.class.php

    r2643 r2699  
    2323
    2424
    25 require_once 'smarty/libs/Smarty.class.php';
     25require_once(PHPWG_ROOT_PATH.'include/smarty/libs/Smarty.class.php');
    2626
    2727// migrate lang:XXX
     
    174174
    175175  /**
    176    * Sets template extentions filenames for handles. 
     176   * Sets template extentions filenames for handles.
    177177   * $filename_array should be an hash of filename => array( handle, param) or filename => handle
    178178   */
     
    330330  function p()
    331331  {
    332     $start = get_moment();
    333 
    334332    $this->flush();
    335333
     
    339337      $this->smarty->assign(
    340338        array(
    341         'AAAA_DEBUG_OUTPUT_TIME__' => get_elapsed_time($start, get_moment()),
    342339        'AAAA_DEBUG_TOTAL_TIME__' => get_elapsed_time($t2, get_moment())
    343340        )
  • trunk/index.php

    r2586 r2699  
    288288}
    289289
    290 //------------------------------------------------------------ log informations
    291 pwg_log();
    292 
    293290include(PHPWG_ROOT_PATH.'include/page_header.php');
    294291trigger_action('loc_end_index');
    295292$template->pparse('index');
     293//------------------------------------------------------------ log informations
     294pwg_log();
    296295include(PHPWG_ROOT_PATH.'include/page_tail.php');
    297296?>
  • trunk/template/yoga/content.css

    r2693 r2699  
    2121}
    2222
    23 .content H3 {
    24         margin-bottom: 1ex;
    25 }
    26 
    2723.content H2 { margin-bottom: 3px;} /*<- for IE otherwise calendar select is displaced to middle of page*/
    28 
    29 .content H3 {
    30         text-align: center;
    31 }
    3224
    3325.content .navigationBar, .content .additional_info, .content .calendarBar {
Note: See TracChangeset for help on using the changeset viewer.