EditController::actionUpdate PHP Method

actionUpdate() public method

If update is successful, the browser will be redirected to the 'view' page.
public actionUpdate ( integer $id, $language )
$id integer the ID of the model to be updated
    public function actionUpdate($id, $language)
    {
        $model = $this->translateLoadModel($id, $language);
        if (isset($_POST['Message'])) {
            $model->attributes = $_POST['Message'];
            if ($model->save()) {
                $this->redirect(array('admin'));
            }
        }
        $this->render('form', array('model' => $model));
    }