aboutsummaryrefslogtreecommitdiffstats
path: root/picture.php
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-06-23 18:34:45 +0000
committernikrou <nikrou@piwigo.org>2010-06-23 18:34:45 +0000
commit5561730d35402c63ef62b449e451491534deb9af (patch)
treef074f5cd8256c1bec90e597096b87afd2b066f83 /picture.php
parent186e9df5af48f258a3b0f87a112c73cf2731cafd (diff)
Bug 1743 fixed : comment form is not visible because of boolean management
git-svn-id: http://piwigo.org/svn/trunk@6591 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'picture.php')
-rw-r--r--picture.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/picture.php b/picture.php
index 80679b19f..9b94d8c73 100644
--- a/picture.php
+++ b/picture.php
@@ -410,6 +410,7 @@ $result = pwg_query($query);
$related_categories = array();
while ($row = pwg_db_fetch_assoc($result))
{
+ $row['commentable'] = boolean_to_string($row['commentable']);
array_push($related_categories, $row);
}
usort($related_categories, 'global_rank_compare');