giix
giix copied to clipboard
Undefined index 'ajax' in performAjaxValidation
trafficstars
giix-components/GxController.php line 160
... if (Yii::app()->getRequest()->getIsAjaxRequest() && (($form === null) || ($_POST['ajax'] == $form))) ...
change:
($_POST['ajax'] == $form)
to:
(isset($_POST['ajax']) && $_POST['ajax'] == $form)
Thanks, @andrevabo.