diff options
author | patdenice <patdenice@piwigo.org> | 2009-03-07 21:34:55 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2009-03-07 21:34:55 +0000 |
commit | 1cfe916db25a47ce3a61881be1eb756a77792857 (patch) | |
tree | 45b33bccd246767dea7609f9a3f98e5477905ccf /plugins | |
parent | e0ea9fb92f467a3b2a24555e58981455eedd127d (diff) |
Re-order templates extension alphabetically.
Allow to use template extension for navigation bar.
git-svn-id: http://piwigo.org/svn/trunk@3182 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | plugins/LocalFilesEditor/admin.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/LocalFilesEditor/admin.php b/plugins/LocalFilesEditor/admin.php index 6ac5fc6a1..3edd1ae50 100644 --- a/plugins/LocalFilesEditor/admin.php +++ b/plugins/LocalFilesEditor/admin.php @@ -185,10 +185,11 @@ switch ($page['tab']) // Model list $eligible_templates = array( 'about.tpl', + 'footer.tpl', + 'header.tpl', 'identification.tpl', + 'index.tpl', 'mainpage_categories.tpl', - 'thumbnails.tpl', - 'redirect.tpl', 'menubar.tpl', 'menubar_categories.tpl', 'menubar_identification.tpl', @@ -196,21 +197,21 @@ switch ($page['tab']) 'menubar_menu.tpl', 'menubar_specials.tpl', 'menubar_tags.tpl', - 'header.tpl', - 'footer.tpl', - 'index.tpl', + 'navigation_bar.tpl', 'nbm.tpl', 'notification.tpl', - 'picture_content.tpl', 'picture.tpl', + 'picture_content.tpl', 'popuphelp.tpl', 'profile.tpl', 'profile_content.tpl', + 'redirect.tpl', 'register.tpl', 'search.tpl', 'search_rules.tpl', 'slideshow.tpl', 'tags.tpl', + 'thumbnails.tpl', 'upload.tpl'); $options['model'][] = l10n('locfiledit_empty_page'); |