Changeset 241 for phpbb2.php
- Timestamp:
- 04/24/09 15:45:32 (3 years ago)
- Files:
-
- phpbb2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
phpbb2.php
r184 r241 3 3 $root_path = './'; 4 4 require ($root_path . 'include/config.php'); 5 @include ($root_path . 'include/overall_header.php');6 @include ($root_path . 'include/overall_footer.php');7 5 8 $page = ( isset($_GET['page']) ? htmlspecialchars($_GET['page']) : '');9 $mode = ( isset($_GET['mode']) ? htmlspecialchars($_GET['mode']) : '');6 $page = request_var('page', ''); 7 $mode = request_var('mode', ''); 10 8 11 9 switch ($page)
