diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-11-20 07:26:20 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-11-20 07:26:20 -0500 |
commit | c9aa0aebf9c290925dd67243902a72b4cb853653 (patch) | |
tree | 9f30d4782dc77738f6689d79870a8d36a5bf228e /lib/gallery.php | |
parent | 83a091de8c26deb5038348e571b54ac85e2efe30 (diff) |
fix empty results
darcs-hash:20081120122620-84dde-ac84012a563247b3074be50662b2879b7519c3d3.gz
Diffstat (limited to 'lib/gallery.php')
-rw-r--r-- | lib/gallery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gallery.php b/lib/gallery.php index d870b8a56..cfb6b650c 100644 --- a/lib/gallery.php +++ b/lib/gallery.php @@ -106,7 +106,7 @@ class GalleryAction extends Action { $lim); if ($cnt == 0) { - common_element('p', _('Nobody to show!')); + common_element('p', NULL, _('Nobody to show!')); return; } |