FluxBB.org

Changeset 734

Show
Ignore:
Timestamp:
11/28/08 09:53:25 (6 weeks ago)
Author:
Jamie
Message:

Added some missing headers in extern.php and changed the wording of a language entry slightly.

Location:
fluxbb/branches/fluxbb-1.3-dev/upload
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • fluxbb/branches/fluxbb-1.3-dev/upload/extern.php

    r710 r734  
    262262        // Send the Content-type header in case the web server is setup to send something else 
    263263        header('Content-type: text/html; charset=utf-8'); 
     264        header('Expires: '.gmdate('D, d M Y H:i:s').' GMT'); 
     265        header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
     266        header('Pragma: public'); 
    264267 
    265268        foreach ($feed['items'] as $item) 
     
    513516        } 
    514517 
     518        // Send the Content-type header in case the web server is setup to send something else 
     519        header('Content-type: text/html; charset=utf-8'); 
     520        header('Expires: '.gmdate('D, d M Y H:i:s').' GMT'); 
     521        header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
     522        header('Pragma: public'); 
     523 
    515524        ($hook = get_hook('ex_pre_online_output')) ? (defined('FORUM_USE_INCLUDE') ? include $hook : eval($hook)) : null; 
    516525 
     
    563572        list($stats['total_topics'], $stats['total_posts']) = $forum_db->fetch_row($result); 
    564573 
     574        // Send the Content-type header in case the web server is setup to send something else 
     575        header('Content-type: text/html; charset=utf-8'); 
     576        header('Expires: '.gmdate('D, d M Y H:i:s').' GMT'); 
     577        header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); 
     578        header('Pragma: public'); 
     579 
    565580        ($hook = get_hook('ex_pre_stats_output')) ? (defined('FORUM_USE_INCLUDE') ? include $hook : eval($hook)) : null; 
    566581 
  • fluxbb/branches/fluxbb-1.3-dev/upload/lang/English/install.php

    r591 r734  
    7979'SQLite prefix collision'       =>      'The table prefix \'sqlite_\' is reserved for use by the SQLite engine. Please choose a different prefix.', 
    8080'FluxBB already installed'      =>      'A table called "%1$susers" is already present in the database "%2$s". This could mean that FluxBB is already installed or that another piece of software is installed and is occupying one or more of the table names FluxBB requires. If you want to install multiple copies of FluxBB in the same database, you must choose a different table prefix.', 
    81 'InnoDB not enabled'            =>      'InnoDB does not seem to be enabled. Please choose a database layer that does not have InnoDB support, or enable InnoDB on your MySQL server.', 
     81'InnoDB not enabled'            =>      'InnoDB does not seem to be enabled. Please choose a database layer that does not require InnoDB support, or enable InnoDB on your MySQL server.', 
    8282'Invalid language'              =>      'The language pack you have chosen doesn\'t seem to exist or is corrupt. Please recheck and try again.', 
    8383