Warning in CMS 1.1.3.1, TinyMCE
Posted: Sun Sep 23, 2007 7:28 am
This isn't an error as such, but it will cause a warning to be displayed if you have errors set at the appropriate level in PHP.
Line 104. of TinyMCE.module.php, reads:
if (!$this->wysiwygactive ) {if (!$this->wysiwygactive && isset($_SESSION["tiny_live_textareas"]) ) {
Change this to:
if (!$this->wysiwygactive && isset($_SESSION["tiny_live_textareas"]) ) {
I get the warning:
Notice: Undefined index: tiny_live_textareas in C:\eska\modules\TinyMCE\TinyMCE.module.php on line 104
I always have error reporting set to display absolutely everything, which is good practice for development.
Line 104. of TinyMCE.module.php, reads:
if (!$this->wysiwygactive ) {if (!$this->wysiwygactive && isset($_SESSION["tiny_live_textareas"]) ) {
Change this to:
if (!$this->wysiwygactive && isset($_SESSION["tiny_live_textareas"]) ) {
I get the warning:
Notice: Undefined index: tiny_live_textareas in C:\eska\modules\TinyMCE\TinyMCE.module.php on line 104
I always have error reporting set to display absolutely everything, which is good practice for development.