diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-02-19 16:25:47 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-02-19 16:25:47 +0000 |
commit | c3614fd12c2296a7410d6bd26f35f988a4dd49f1 (patch) | |
tree | aa9cb100d39f5fedc8f9288012ab6d0628981b1a /picture.php | |
parent | c8bc5c665dff485a3a233e23c6eaa78930f8766f (diff) |
web service: added method to query search elements
picture: small correction on my last commit
monthly calendar nice view: always use getimagesize instead of guessing the size
query search: improved results (filename is searched separately) and sometimes less sql queries than before
git-svn-id: http://piwigo.org/svn/trunk@1837 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | picture.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/picture.php b/picture.php index 3d258fb32..6b5775560 100644 --- a/picture.php +++ b/picture.php @@ -754,7 +754,7 @@ if ( count($tags) ) $infos['INFO_TAGS'] = ''; foreach ($tags as $num => $tag) { - $infos['INFO_TAGS'] .= $num ? ' ,' : ''; + $infos['INFO_TAGS'] .= $num ? ', ' : ''; $infos['INFO_TAGS'] .= '<a href="' .make_index_url( array( |