mirror of
https://github.com/e107inc/e107.git
synced 2025-08-04 13:47:31 +02:00
PHP Notices.
This commit is contained in:
@@ -119,7 +119,7 @@ class emotec
|
|||||||
{
|
{
|
||||||
var $packArray; // Stores an array of all available emote packs (as subdirectory names)
|
var $packArray; // Stores an array of all available emote packs (as subdirectory names)
|
||||||
|
|
||||||
function emotec()
|
function __construct()
|
||||||
{
|
{
|
||||||
/* constructor */
|
/* constructor */
|
||||||
$fl = e107::getFile();
|
$fl = e107::getFile();
|
||||||
|
@@ -81,7 +81,7 @@ class e_tohtml_linkwords
|
|||||||
|
|
||||||
// $this->maxPerWord = vartrue($pref['lw_max_per_word'], 25);
|
// $this->maxPerWord = vartrue($pref['lw_max_per_word'], 25);
|
||||||
$this->customClass = vartrue($pref['lw_custom_class'],'');
|
$this->customClass = vartrue($pref['lw_custom_class'],'');
|
||||||
$this->area_opts = $pref['lw_context_visibility'];
|
$this->area_opts = varset($pref['lw_context_visibility']);
|
||||||
$this->utfMode = (strtolower(CHARSET) == 'utf-8') ? 'u' : ''; // Flag to enable utf-8 on regex //@TODO utfMode probably obsolete
|
$this->utfMode = (strtolower(CHARSET) == 'utf-8') ? 'u' : ''; // Flag to enable utf-8 on regex //@TODO utfMode probably obsolete
|
||||||
$this->lwAjaxEnabled = varset($pref['lw_ajax_enable'],0);
|
$this->lwAjaxEnabled = varset($pref['lw_ajax_enable'],0);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user