diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-01-13 03:13:40 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-01-13 03:13:40 +0000 |
commit | 80754de17245e385bbbd7429bd2147312ee1b62e (patch) | |
tree | 9485ecefcebdc3440bb7792c133362992bdf66f8 /include/page_header.php | |
parent | ed6d397aa1a82d6a8f0794b46a381fe746a0ae70 (diff) |
very small improvements:
- mass_inserts does not requires keys to start at 0
- recent_cats categories are sorted by global_rank (consistency)
- removed warning from page_header.php (when included from redirect)
- added 2 template functions for plugins (get_var and concat_var)
- removed unused code from profile.php
- changed css width for tag selection (search page) from 55em to almost 100%
git-svn-id: http://piwigo.org/svn/trunk@1719 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/page_header.php')
-rw-r--r-- | include/page_header.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/page_header.php b/include/page_header.php index 8b0d69d2d..4ebe643b2 100644 --- a/include/page_header.php +++ b/include/page_header.php @@ -62,7 +62,7 @@ if (isset($header_infos)) } // Header notes -if (count($header_notes) > 0) +if ( isset($header_notes) and count($header_notes)>0) { foreach ($header_notes as $header_note) { |