diff options
author | plegall <plg@piwigo.org> | 2011-08-22 17:14:13 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-08-22 17:14:13 +0000 |
commit | 58b18bff0f08daa482c7949e1487ffccf00463a5 (patch) | |
tree | b4fc9a21d4b892a0c274958f818dc26f0e5e58be /admin | |
parent | 24ab1e2467a178817735b9049e4a8a6612e13d41 (diff) |
feature 2413 added: move gallery_url configuration parameter from database to
local configuration file.
git-svn-id: http://piwigo.org/svn/trunk@11978 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/configuration.php | 1 | ||||
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index 9915af3cc..53916199f 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -327,7 +327,6 @@ switch ($page['section']) array( 'CONF_GALLERY_TITLE' => htmlspecialchars($conf['gallery_title']), 'CONF_PAGE_BANNER' => htmlspecialchars($conf['page_banner']), - 'CONF_GALLERY_URL' => $conf['gallery_url'], 'week_starts_on_options' => array( 'sunday' => $lang['day'][0], 'monday' => $lang['day'][1], diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index 895d52295..205d5ffb0 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -26,13 +26,6 @@ </span> <textarea rows="5" cols="50" class="description" name="page_banner" id="page_banner">{$main.CONF_PAGE_BANNER}</textarea> </li> - - <li> - <span class="property"> - <label for="gallery_url">{'Gallery URL'|@translate}</label> - </span> - <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{$main.CONF_GALLERY_URL}"> - </li> </ul> </fieldset> |