1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 20:01:47 +02:00

Remove some references to deprecated functions/methods.

This commit is contained in:
Cameron
2015-02-14 23:34:15 -08:00
parent db057b3788
commit e576370e57
84 changed files with 319 additions and 317 deletions

View File

@@ -1390,15 +1390,15 @@ class e_parse extends e_parser
}
// Turn off a few things if not enabled in options
if(!varsettrue($pref['smiley_activate']))
if(!vartrue($pref['smiley_activate']))
{
$opts['emotes'] = FALSE;
}
if(!varsettrue($pref['make_clickable']))
if(!vartrue($pref['make_clickable']))
{
$opts['link_click'] = FALSE;
}
if(!varsettrue($pref['link_replace']))
if(!vartrue($pref['link_replace']))
{
$opts['link_replace'] = FALSE;
}