Revision 213, 290 bytes
(checked in by ralle030583, 14 years ago)
|
All files (i hope i havent forgott something) was modified to use the the config in this way:
- config::get($key)
- config::del($key)
- config::set($key,value)
Exception Templates/Smarty?:
The templates still uses $config->get($key) and $config->set($key,$value) cause
it seems that smarty dont like the :: notification
|
Line | |
---|
1 | {strip} |
---|
2 | <tr><td width="160"><b>{$opt.descr}:</b></td><td> |
---|
3 | <input type="edit" id="option[{$opt.name}]" name="option[{$opt.name}]" |
---|
4 | value="{$config->get($opt.name)}" size="{$options.size}" maxlength="{$options.maxlength}"> |
---|
5 | {if $opt.hint} |
---|
6 | ({$opt.hint}) |
---|
7 | {/if} |
---|
8 | </td></tr> |
---|
9 | {/strip} |
---|