diff options
| author | Christian Fowler <spider@viovio.com> | 2006-03-01 21:12:31 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2006-03-01 21:12:31 +0000 |
| commit | aa47085c6c7e1b367248b943bdcaef6ec9bc10ef (patch) | |
| tree | 4fc31d5ee51d7d9d54ce6d9b40dc680b2ba90461 /templates | |
| parent | 8fc31a05a5e0410517e2737a98ed200c57398a0d (diff) | |
| download | users-aa47085c6c7e1b367248b943bdcaef6ec9bc10ef.tar.gz users-aa47085c6c7e1b367248b943bdcaef6ec9bc10ef.tar.bz2 users-aa47085c6c7e1b367248b943bdcaef6ec9bc10ef.zip | |
move BitSystem:: preferences methods to get/set/load/storeConfig to avoid conflict with new content preferences
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/admin_login.tpl | 16 | ||||
| -rw-r--r-- | templates/admin_users.tpl | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/templates/admin_login.tpl b/templates/admin_login.tpl index e324620..8330253 100644 --- a/templates/admin_login.tpl +++ b/templates/admin_login.tpl @@ -26,9 +26,9 @@ {formlabel label=`$output.label` for=$feature} {forminput} {if $output.type == 'text'} - <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig('')$feature|escape}" /> + <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig($feature)|escape}" /> {else} - {html_checkboxes name="$feature" values="y" checked=`$gBitSystem->getConfig('')$feature` labels=false id=$feature} + {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature} {/if} {formhelp note=`$output.note` page=`$output.page` link=`$output.link`} {/forminput} @@ -72,9 +72,9 @@ {formlabel label=`$output.label` for=$feature} {forminput} {if $output.type == 'text'} - <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig('')$feature|escape}" /> + <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig($feature)|escape}" /> {else} - {html_checkboxes name="$feature" values="y" checked=`$gBitSystem->getConfig('')$feature` labels=false id=$feature} + {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature} {/if} {formhelp note=`$output.note` page=`$output.page` link=`$output.link`} {/forminput} @@ -96,9 +96,9 @@ {formlabel label=`$output.label` for=$feature} {forminput} {if $output.type == 'text'} - <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig('')$feature|escape}" /> + <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig($feature)|escape}" /> {else} - {html_checkboxes name="$feature" values="y" checked=`$gBitSystem->getConfig('')$feature` labels=false id=$feature} + {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature} {/if} {formhelp note=`$output.note` page=`$output.page` link=`$output.link`} {/forminput} @@ -120,9 +120,9 @@ {formlabel label=`$output.label` for=$feature} {forminput} {if $output.type == 'text'} - <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig('')$feature|escape}" /> + <input type="text" size="50" name="{$feature}" id="{$feature}" value="{$gBitSystem->getConfig($feature)|escape}" /> {else} - {html_checkboxes name="$feature" values="y" checked=`$gBitSystem->getConfig('')$feature` labels=false id=$feature} + {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature} {/if} {formhelp note=`$output.note` page=`$output.page` link=`$output.link`} {/forminput} diff --git a/templates/admin_users.tpl b/templates/admin_users.tpl index bf9f662..c695908 100644 --- a/templates/admin_users.tpl +++ b/templates/admin_users.tpl @@ -16,7 +16,7 @@ <div class="row"> {formlabel label=`$output.label` for=$feature} {forminput} - {html_checkboxes name="settings[$feature]" values="y" checked=`$gBitSystem->getConfig('')$feature` labels=false id=$feature} + {html_checkboxes name="settings[$feature]" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature} {formhelp note=`$output.note` page=`$output.link`} {/forminput} </div> |
