Changeset 350


Ignore:
Timestamp:
Feb 6, 2004, 12:18:05 AM (20 years ago)
Author:
z0rglub
Message:

append central HTML to $output, do not echo $code anymore

Location:
branches/release-1_3
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • branches/release-1_3/about.php

    r290 r350  
    3737$vtp->setVar( $handle, 'back_url', add_session_id( $url ) );
    3838//----------------------------------------------------------- html code display
    39 $code = $vtp->Display( $handle, 0 );
    40 echo $code;
     39$output.= $vtp->Display( $handle, 0 );
    4140include('include/page_tail.php');
    4241?>
  • branches/release-1_3/category.php

    r314 r350  
    493493mysql_close();
    494494//----------------------------------------------------------- html code display
    495 $code = $vtp->Display( $handle, 0 );
    496 echo $code;
     495$output.= $vtp->Display( $handle, 0 );
    497496
    498497include('include/page_tail.php');
  • branches/release-1_3/comments.php

    r290 r350  
    185185display_pictures( $result, $maxtime, $user['restrictions'] );
    186186//----------------------------------------------------------- html code display
    187 $code = $vtp->Display( $handle, 0 );
    188 echo $code;
     187$output.= $vtp->Display( $handle, 0 );
    189188include('include/page_tail.php');
    190189?>
  • branches/release-1_3/identification.php

    r290 r350  
    112112}
    113113//----------------------------------------------------------- html code display
    114 $code = $vtp->Display( $handle, 0 );
    115 echo $code;
     114$output.= $vtp->Display( $handle, 0 );
    116115include('include/page_tail.php');
    117116?>
  • branches/release-1_3/picture.php

    r312 r350  
    757757mysql_close();
    758758//----------------------------------------------------------- html code display
    759 $code = $vtp->Display( $handle, 0 );
    760 echo $code;
     759$output.= $vtp->Display( $handle, 0 );
    761760
    762761include('include/page_tail.php');
  • branches/release-1_3/profile.php

    r326 r350  
    365365}
    366366//----------------------------------------------------------- html code display
    367 $code = $vtp->Display( $handle, 0 );
    368 echo $code;
     367$output.= $vtp->Display( $handle, 0 );
    369368include('include/page_tail.php');
    370369?>
  • branches/release-1_3/register.php

    r290 r350  
    104104$vtp->closeSession( $handle, 'line' );
    105105//----------------------------------------------------------- html code display
    106 $code = $vtp->Display( $handle, 0 );
    107 echo $code;
     106$output.= $vtp->Display( $handle, 0 );
    108107include('include/page_tail.php');
    109108?>
  • branches/release-1_3/search.php

    r290 r350  
    119119$vtp->setGlobalVar( $handle, 'back_url', add_session_id( './category.php' ) );
    120120//----------------------------------------------------------- html code display
    121 $code = $vtp->Display( $handle, 0 );
    122 echo $code;
     121$output.= $vtp->Display( $handle, 0 );
    123122//------------------------------------------------------------ log informations
    124123pwg_log( 'search', $title );
  • branches/release-1_3/upload.php

    r315 r350  
    386386$vtp->setGlobalVar( $handle, 'return_url', add_session_id( $url ) );
    387387//----------------------------------------------------------- html code display
    388 $code = $vtp->Display( $handle, 0 );
    389 echo $code;
     388$output.= $vtp->Display( $handle, 0 );
    390389include('include/page_tail.php');
    391390?>
Note: See TracChangeset for help on using the changeset viewer.