diff options
author | mistic100 <mistic@piwigo.org> | 2011-04-02 13:32:12 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-04-02 13:32:12 +0000 |
commit | 8212dd5087670b7777ba49a6b1a4e11f482b3c10 (patch) | |
tree | fb0ffa3117444e156de6b6973643b618a4c08484 | |
parent | a74bc256e7735b6fcf9845ff2947be8a084a2057 (diff) |
bug:1750
git-svn-id: http://piwigo.org/svn/trunk@9988 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | admin/extend_for_templates.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/admin/extend_for_templates.php b/admin/extend_for_templates.php index 24b054aca..acf421801 100644 --- a/admin/extend_for_templates.php +++ b/admin/extend_for_templates.php @@ -77,6 +77,8 @@ $relevant_parameters = array_merge($relevant_parameters, $permalinks); $eligible_templates = array( '----------' => 'N/A', 'about.tpl' => 'about', + 'comments.tpl' => 'comments', + 'comment_list.tpl' => 'comment_list', 'footer.tpl' => 'tail', 'header.tpl' => 'header', 'identification.tpl' => 'identification', @@ -89,9 +91,11 @@ $eligible_templates = array( 'menubar_menu.tpl' => 'mbMenu', 'menubar_specials.tpl' => 'mbSpecials', 'menubar_tags.tpl' => 'mbTags', + 'month_calendar.tpl' => 'month_calendar', 'navigation_bar.tpl' => 'navbar', 'nbm.tpl' => 'nbm', 'notification.tpl' => 'notification', + 'password.tpl' => 'password', 'picture.tpl' => 'picture', 'picture_content.tpl' => 'default_content', 'picture_nav_buttons.tpl' => 'picture_nav_buttons', @@ -105,7 +109,7 @@ $eligible_templates = array( 'slideshow.tpl' => 'slideshow', 'tags.tpl' => 'tags', 'thumbnails.tpl' => 'index_thumbnails', - 'upload.tpl' => 'upload',); +); $flip_templates = array_flip($eligible_templates); |