[Typo3] System Error: No typeVal was sent!

Kraft Bernhard kraftb at gmx.net
Thu Feb 24 22:41:45 CET 2005


Louis Bouchard wrote:
>    // Record "types" field value:
>   $this->typeVal = t3lib_div::_GP('typeVal');
>   if (!isset($HTTP_GET_VARS['typeVal'])) {
>    die ('System Error: No typeVal was sent!');
>   }

Is this code from the the core or from the RTE extension?

I think it should be
 >   $this->typeVal = t3lib_div::_GP('typeVal');
 >   if (!isset($this->typeVal) {
 >    die ('System Error: No typeVal was sent!');
 >   }

try it ... if it works post it in the bugtracker.


greets,
Bernhard
-- 
----------------------------------------------------------------------
"Freiheit ist immer auch die Freiheit des Andersdenkenden"
Rosa Luxemburg, 1871 - 1919
----------------------------------------------------------------------



More information about the TYPO3-english mailing list