Changeset 2699
- Timestamp:
- Oct 10, 2008, 1:14:43 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/template.class.php
r2643 r2699 23 23 24 24 25 require_once 'smarty/libs/Smarty.class.php';25 require_once(PHPWG_ROOT_PATH.'include/smarty/libs/Smarty.class.php'); 26 26 27 27 // migrate lang:XXX … … 174 174 175 175 /** 176 * Sets template extentions filenames for handles. 176 * Sets template extentions filenames for handles. 177 177 * $filename_array should be an hash of filename => array( handle, param) or filename => handle 178 178 */ … … 330 330 function p() 331 331 { 332 $start = get_moment();333 334 332 $this->flush(); 335 333 … … 339 337 $this->smarty->assign( 340 338 array( 341 'AAAA_DEBUG_OUTPUT_TIME__' => get_elapsed_time($start, get_moment()),342 339 'AAAA_DEBUG_TOTAL_TIME__' => get_elapsed_time($t2, get_moment()) 343 340 ) -
trunk/index.php
r2586 r2699 288 288 } 289 289 290 //------------------------------------------------------------ log informations291 pwg_log();292 293 290 include(PHPWG_ROOT_PATH.'include/page_header.php'); 294 291 trigger_action('loc_end_index'); 295 292 $template->pparse('index'); 293 //------------------------------------------------------------ log informations 294 pwg_log(); 296 295 include(PHPWG_ROOT_PATH.'include/page_tail.php'); 297 296 ?> -
trunk/template/yoga/content.css
r2693 r2699 21 21 } 22 22 23 .content H3 {24 margin-bottom: 1ex;25 }26 27 23 .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 }32 24 33 25 .content .navigationBar, .content .additional_info, .content .calendarBar {
Note: See TracChangeset
for help on using the changeset viewer.