В контроллере такой код:
- Код: Выделить всё
public function actionDelete($id){
if(Yii::app()->request->isPostRequest){
// we only allow deletion via POST request
$this->loadModelUserAd($id)->delete();
// if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser
if(!isset($_GET['ajax']))
$this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('index'));
}
else
throw new CHttpException(400,'Invalid request. Please do not repeat this request again.');
}
Пробовал менять
- Код: Выделить всё
$this->redirect(array('index'))