aboutsummaryrefslogtreecommitdiffstats
path: root/include/template.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/template.class.php')
-rw-r--r--include/template.class.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/template.class.php b/include/template.class.php
index 1afdb655c..62a5a4cfc 100644
--- a/include/template.class.php
+++ b/include/template.class.php
@@ -239,10 +239,14 @@ class Template {
if ($is_new)
{
$this->smarty->assign( 'ROOT_URL', get_root_url() );
+ $this->smarty->assign( 'TAG_INPUT_ENABLED',
+ ((is_adviser()) ? 'disabled="disabled" onclick="return false;"' : ''));
$v = $this->smarty->fetch($this->files[$handle], null, null, false);
}
else
{
+ $this->_old->assign_vars(array('TAG_INPUT_ENABLED' =>
+ ((is_adviser()) ? 'disabled onclick="return false;"' : '')));
$this->_old->set_filename( $handle, $this->files[$handle] );
$v = $this->_old->parse($handle, true);
}