Changeset 2294193
- Timestamp:
- 04/29/2020 08:45:45 AM (6 years ago)
- Location:
- do-that-task
- Files:
-
- 2 edited
-
tags/1.4.8/includes/class-dothattask.php (modified) (2 diffs)
-
trunk/includes/class-dothattask.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
do-that-task/tags/1.4.8/includes/class-dothattask.php
r2288328 r2294193 274 274 public function dtt_task_manager_footer($aParams) 275 275 { 276 $this->set_template('footer_logo',$aParams );276 $this->set_template('footer_logo',$aParams,"nohtml"); 277 277 } 278 278 public function dtt_task_manager_admin_footer($aParams) … … 454 454 ob_start(); 455 455 include DTT_PATH."template/template.php"; 456 return ob_get_contents(); 457 ob_get_clean(); 456 if($aParams['view']=='html'){ 457 return ob_get_contents(); 458 ob_get_clean(); 459 }else{ 460 return ob_get_clean(); 461 } 458 462 } 459 463 /** -
do-that-task/trunk/includes/class-dothattask.php
r2288328 r2294193 274 274 public function dtt_task_manager_footer($aParams) 275 275 { 276 $this->set_template('footer_logo',$aParams );276 $this->set_template('footer_logo',$aParams,"nohtml"); 277 277 } 278 278 public function dtt_task_manager_admin_footer($aParams) … … 454 454 ob_start(); 455 455 include DTT_PATH."template/template.php"; 456 return ob_get_contents(); 457 ob_get_clean(); 456 if($aParams['view']=='html'){ 457 return ob_get_contents(); 458 ob_get_clean(); 459 }else{ 460 return ob_get_clean(); 461 } 458 462 } 459 463 /**
Note: See TracChangeset
for help on using the changeset viewer.