mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
merge -r1287 from branch-1_6 to trunk
bug 349: Nicer display messages instead of "die" when urls cannot be solved (also set 404 status code for bots) git-svn-id: http://piwigo.org/svn/trunk@1288 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -39,6 +39,9 @@ if ( isset($_GET['cat']) )
|
||||
{
|
||||
$url_params['section'] = 'categories';
|
||||
$url_params['category'] = $_GET['cat'];
|
||||
$result = get_cat_info($url_params['category']);
|
||||
if ( !empty($result) )
|
||||
$url_params['cat_name'] = $result['name'];
|
||||
}
|
||||
elseif ( in_array($_GET['cat'],
|
||||
array('best_rated','most_visited','recent_pics','recent_cats')
|
||||
@@ -47,6 +50,10 @@ if ( isset($_GET['cat']) )
|
||||
{
|
||||
$url_params['section'] = $_GET['cat'];
|
||||
}
|
||||
else
|
||||
{
|
||||
page_not_found('');
|
||||
}
|
||||
}
|
||||
|
||||
redirect ( make_index_url($url_params) );
|
||||
|
||||
Reference in New Issue
Block a user