I've not tested this personally yet, but
thincom2000 was referring to the templateedits.php file. TO apply his/her 'fixes' for
version 1.1.4:
Edit the admincp/templateedits.php file, search for :
PHP Code:
// update a modified templateedit
if ($_REQUEST['do'] == 'update')
{
$vbulletin->input->clean_array_gpc('p', array(
'searchorder' => TYPE_UINT,
'searchstr' => TYPE_NOTRIM,
'replacestr' => TYPE_NOTRIM,
'styleid' => TYPE_UINT,
'oldtemplate' => TYPE_STR,
'template' => TYPE_STR,
'title' => TYPE_NOHTML,
'oldproduct' => TYPE_STR,
'product' => TYPE_STR,
'varname' => TYPE_STR,
'oldvarname' => TYPE_STR,
'templateeditid' => TYPE_INT,
'templateeditlocationid' => TYPE_INT,
'method' => TYPE_STR,
'active' => TYPE_BOOL,
'ismaster' => TYPE_NOOL
));
and replace with
PHP Code:
// update a modified templateedit
if ($_REQUEST['do'] == 'update')
{
$vbulletin->input->clean_array_gpc('p', array(
'searchorder' => TYPE_UINT,
'searchstr' => TYPE_NOTRIM,
'replacestr' => TYPE_NOTRIM,
'styleid' => TYPE_INT,
'oldtemplate' => TYPE_STR,
'template' => TYPE_STR,
'title' => TYPE_NOHTML,
'oldproduct' => TYPE_STR,
'product' => TYPE_STR,
'varname' => TYPE_STR,
'oldvarname' => TYPE_STR,
'templateeditid' => TYPE_INT,
'templateeditlocationid' => TYPE_INT,
'method' => TYPE_STR,
'active' => TYPE_BOOL,
'ismaster' => TYPE_BOOL
));