diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-03-09 01:57:13 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-03-09 01:57:13 +0000 |
commit | 316d89a90b5cd61f41ea3f35112277608c2e2694 (patch) | |
tree | 66ceae341af79044b795c27a4251fb0cd3a9dbed /template/yoga | |
parent | b263f0c996eac52afc222b99fb1e9bcb6b064d65 (diff) |
bug 255: parameter values in #config limited to 255 chars (value becomes text)
feature 303: page banner moved from combination of gallery_title,
gallery_description and template to database (simplifies user customization)
git-svn-id: http://piwigo.org/svn/trunk@1071 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/admin/configuration.tpl | 10 | ||||
-rw-r--r-- | template/yoga/header.tpl | 5 |
2 files changed, 6 insertions, 9 deletions
diff --git a/template/yoga/admin/configuration.tpl b/template/yoga/admin/configuration.tpl index 82982dfd4..0c7c1817d 100644 --- a/template/yoga/admin/configuration.tpl +++ b/template/yoga/admin/configuration.tpl @@ -19,12 +19,12 @@ </li> <li> - <label for="gallery_description"><strong>{lang:Gallery description}</strong></label> - <textarea cols="50" rows="5" name="gallery_description" id="gallery_description">{general.CONF_GALLERY_DESCRIPTION}</textarea> + <label for="page_banner"><strong>{lang:Page banner}</strong></label> + <textarea cols="50" rows="5" name="page_banner" id="page_banner">{general.CONF_PAGE_BANNER}</textarea> </li> <li> - <label for="gallery_title"><strong>{lang:Gallery URL}</strong></label> + <label for="gallery_url"><strong>{lang:Gallery URL}</strong></label> <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{general.CONF_GALLERY_URL}" /> </li> @@ -40,7 +40,7 @@ <input type="radio" class="radio" name="gallery_locked" value="false" {general.GALLERY_LOCKED_NO} />{lang:No} </li> </ul> - + <ul> <li> <label><strong>{lang:Rating}</strong></label> @@ -139,7 +139,7 @@ </ul> <!-- END default --> </fieldset> - + <p> <input type="submit" name="submit" value="{lang:Submit}"> <input type="reset" name="reset" value="{lang:Reset}"> diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl index 9936a1095..ccf80d74f 100644 --- a/template/yoga/header.tpl +++ b/template/yoga/header.tpl @@ -27,7 +27,4 @@ the "text/nonsense" prevents gecko based browsers to load it --> <body id="{BODY_ID}"> <div id="the_page"> -<div id="theHeader"> - <h1>{GALLERY_TITLE}</h1> - <p>{GALLERY_DESCRIPTION}</p> -</div> +{PAGE_BANNER} |