Changeset 734
- Timestamp:
- 11/28/08 09:53:25 (6 weeks ago)
- Location:
- fluxbb/branches/fluxbb-1.3-dev/upload
- Files:
-
- 2 modified
-
extern.php (modified) (3 diffs)
-
lang/English/install.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fluxbb/branches/fluxbb-1.3-dev/upload/extern.php
r710 r734 262 262 // Send the Content-type header in case the web server is setup to send something else 263 263 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'); 264 267 265 268 foreach ($feed['items'] as $item) … … 513 516 } 514 517 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 515 524 ($hook = get_hook('ex_pre_online_output')) ? (defined('FORUM_USE_INCLUDE') ? include $hook : eval($hook)) : null; 516 525 … … 563 572 list($stats['total_topics'], $stats['total_posts']) = $forum_db->fetch_row($result); 564 573 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 565 580 ($hook = get_hook('ex_pre_stats_output')) ? (defined('FORUM_USE_INCLUDE') ? include $hook : eval($hook)) : null; 566 581 -
fluxbb/branches/fluxbb-1.3-dev/upload/lang/English/install.php
r591 r734 79 79 'SQLite prefix collision' => 'The table prefix \'sqlite_\' is reserved for use by the SQLite engine. Please choose a different prefix.', 80 80 '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.', 82 82 'Invalid language' => 'The language pack you have chosen doesn\'t seem to exist or is corrupt. Please recheck and try again.', 83 83
