[1110] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
| 4 | // | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net | |
---|
| 5 | // +-----------------------------------------------------------------------+ |
---|
| 6 | // | branch : BSF (Best So Far) |
---|
| 7 | // | file : $Id: category.php 1288 2006-04-28 05:12:25Z rvelices $ |
---|
| 8 | // | last update : $Date: 2006-04-28 05:12:25 +0000 (Fri, 28 Apr 2006) $ |
---|
| 9 | // | last modifier : $Author: rvelices $ |
---|
| 10 | // | revision : $Revision: 1288 $ |
---|
| 11 | // +-----------------------------------------------------------------------+ |
---|
| 12 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 13 | // | it under the terms of the GNU General Public License as published by | |
---|
| 14 | // | the Free Software Foundation | |
---|
| 15 | // | | |
---|
| 16 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 19 | // | General Public License for more details. | |
---|
| 20 | // | | |
---|
| 21 | // | You should have received a copy of the GNU General Public License | |
---|
| 22 | // | along with this program; if not, write to the Free Software | |
---|
| 23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 24 | // | USA. | |
---|
| 25 | // +-----------------------------------------------------------------------+ |
---|
| 26 | |
---|
| 27 | /* |
---|
| 28 | This file contains now only code to ensure backward url compatibility with |
---|
| 29 | versions before 1.6 |
---|
| 30 | */ |
---|
| 31 | |
---|
| 32 | define('PHPWG_ROOT_PATH','./'); |
---|
| 33 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 34 | |
---|
| 35 | $url_params=array(); |
---|
| 36 | if ( isset($_GET['cat']) ) |
---|
| 37 | { |
---|
| 38 | if ( is_numeric($_GET['cat']) ) |
---|
| 39 | { |
---|
| 40 | $url_params['section'] = 'categories'; |
---|
| 41 | $url_params['category'] = $_GET['cat']; |
---|
[1288] | 42 | $result = get_cat_info($url_params['category']); |
---|
| 43 | if ( !empty($result) ) |
---|
| 44 | $url_params['cat_name'] = $result['name']; |
---|
[1110] | 45 | } |
---|
| 46 | elseif ( in_array($_GET['cat'], |
---|
| 47 | array('best_rated','most_visited','recent_pics','recent_cats') |
---|
| 48 | ) |
---|
| 49 | ) |
---|
| 50 | { |
---|
| 51 | $url_params['section'] = $_GET['cat']; |
---|
| 52 | } |
---|
[1288] | 53 | else |
---|
| 54 | { |
---|
| 55 | page_not_found(''); |
---|
| 56 | } |
---|
[1110] | 57 | } |
---|
| 58 | |
---|
| 59 | redirect ( make_index_url($url_params) ); |
---|
| 60 | |
---|
| 61 | ?> |
---|