aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_category.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-04-28 05:11:46 +0000
committerrvelices <rv-github@modusoptimus.com>2006-04-28 05:11:46 +0000
commite827e05429469912c450d2a1ee6750fffc82dbde (patch)
treef0d3af7ece4569d21491dbd3ac7901e0f41e3f84 /include/functions_category.inc.php
parent1cc593f7606c34428271a4beee5755a301988e4e (diff)
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/branches/branch-1_6@1287 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_category.inc.php')
-rw-r--r--include/functions_category.inc.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php
index a671474ef..2aff86975 100644
--- a/include/functions_category.inc.php
+++ b/include/functions_category.inc.php
@@ -118,6 +118,8 @@ SELECT '.implode(',', $infos).'
WHERE id = '.$id.'
;';
$row = mysql_fetch_array(pwg_query($query));
+ if (empty($row))
+ return null;
$cat = array();
foreach ($infos as $info)