Changeset 686


Ignore:
Timestamp:
Jan 11, 2005, 9:05:49 PM (19 years ago)
Author:
plg
Message:
  • decrease refresh time to 0 seconds
Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions.inc.php

    r675 r686  
    548548  // $refresh, $url_link and $title are required for creating an automated
    549549  // refresh page in header.tpl
    550   $refresh = 2;
     550  $refresh = 0;
    551551  $url_link = $url;
    552552  $title = 'redirection';
  • trunk/include/page_header.php

    r675 r686  
    4545
    4646// refresh
    47 if ( isset( $refresh ) and $refresh > 0 and isset( $url_link ) )
     47if ( isset( $refresh ) and is_int($refresh) and isset( $url_link ) )
    4848{
    4949  $template->assign_vars(
Note: See TracChangeset for help on using the changeset viewer.