Haz lo siguiente:
Código PHP:
Ver originalpublic function indexAction(){
try {
$model = new Admin_Model_DbTable_Usuarios();
'nombre' => 'pruebaUpdate',
'password' => 'probandoUpdate'
);
$where = $model->getAdapter()->quoteInto('id = ?', 12);
$model->update($datos, $where);
} catch( Exception $e) {
echo $e->getMessage() . '<br />' . $e->getTraceAsString();
}
}
Saludos.