Changeset 350 for branches/release-1_3
- Timestamp:
- Feb 6, 2004, 12:18:05 AM (21 years ago)
- Location:
- branches/release-1_3
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/release-1_3/about.php
r290 r350 37 37 $vtp->setVar( $handle, 'back_url', add_session_id( $url ) ); 38 38 //----------------------------------------------------------- html code display 39 $code = $vtp->Display( $handle, 0 ); 40 echo $code; 39 $output.= $vtp->Display( $handle, 0 ); 41 40 include('include/page_tail.php'); 42 41 ?> -
branches/release-1_3/category.php
r314 r350 493 493 mysql_close(); 494 494 //----------------------------------------------------------- html code display 495 $code = $vtp->Display( $handle, 0 ); 496 echo $code; 495 $output.= $vtp->Display( $handle, 0 ); 497 496 498 497 include('include/page_tail.php'); -
branches/release-1_3/comments.php
r290 r350 185 185 display_pictures( $result, $maxtime, $user['restrictions'] ); 186 186 //----------------------------------------------------------- html code display 187 $code = $vtp->Display( $handle, 0 ); 188 echo $code; 187 $output.= $vtp->Display( $handle, 0 ); 189 188 include('include/page_tail.php'); 190 189 ?> -
branches/release-1_3/identification.php
r290 r350 112 112 } 113 113 //----------------------------------------------------------- html code display 114 $code = $vtp->Display( $handle, 0 ); 115 echo $code; 114 $output.= $vtp->Display( $handle, 0 ); 116 115 include('include/page_tail.php'); 117 116 ?> -
branches/release-1_3/picture.php
r312 r350 757 757 mysql_close(); 758 758 //----------------------------------------------------------- html code display 759 $code = $vtp->Display( $handle, 0 ); 760 echo $code; 759 $output.= $vtp->Display( $handle, 0 ); 761 760 762 761 include('include/page_tail.php'); -
branches/release-1_3/profile.php
r326 r350 365 365 } 366 366 //----------------------------------------------------------- html code display 367 $code = $vtp->Display( $handle, 0 ); 368 echo $code; 367 $output.= $vtp->Display( $handle, 0 ); 369 368 include('include/page_tail.php'); 370 369 ?> -
branches/release-1_3/register.php
r290 r350 104 104 $vtp->closeSession( $handle, 'line' ); 105 105 //----------------------------------------------------------- html code display 106 $code = $vtp->Display( $handle, 0 ); 107 echo $code; 106 $output.= $vtp->Display( $handle, 0 ); 108 107 include('include/page_tail.php'); 109 108 ?> -
branches/release-1_3/search.php
r290 r350 119 119 $vtp->setGlobalVar( $handle, 'back_url', add_session_id( './category.php' ) ); 120 120 //----------------------------------------------------------- html code display 121 $code = $vtp->Display( $handle, 0 ); 122 echo $code; 121 $output.= $vtp->Display( $handle, 0 ); 123 122 //------------------------------------------------------------ log informations 124 123 pwg_log( 'search', $title ); -
branches/release-1_3/upload.php
r315 r350 386 386 $vtp->setGlobalVar( $handle, 'return_url', add_session_id( $url ) ); 387 387 //----------------------------------------------------------- html code display 388 $code = $vtp->Display( $handle, 0 ); 389 echo $code; 388 $output.= $vtp->Display( $handle, 0 ); 390 389 include('include/page_tail.php'); 391 390 ?>
Note: See TracChangeset
for help on using the changeset viewer.