From 665d4af0f0670c55cc551f58df0e66994d38916d Mon Sep 17 00:00:00 2001 From: david Date: Wed, 22 Feb 2012 16:35:17 +0000 Subject: [PATCH] =?UTF-8?q?-=20Indicar=20idioma=20castellano=20en=20la=20c?= =?UTF-8?q?onfiguraci=C3=B3n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_IntranetNueva/trunk@13 77cfc57b-8ef4-1849-9df6-4a38aa5da120 --- www/protected/config/main.php | 8 +- .../controllers/CandidatoController.php | 186 +- .../migrations/m120130_120838_tbl_idiomas.php | 2 +- www/protected/models/Candidato.php | 2 +- www/protected/runtime/application.log | 3284 +++++++++++++++++ .../views/candidato/_formCandidatoIdioma.php | 30 - www/themes/intranet/css/custom.css | 31 + www/themes/intranet/css/style.css | 7 +- www/themes/intranet/views/candidato/_form.php | 22 +- .../intranet/views/candidato/create.php | 10 +- www/themes/intranet/views/candidato/index.php | 3 + .../intranet/views/candidato/update.php | 11 +- www/themes/intranet/views/layouts/default.php | 10 +- 13 files changed, 3529 insertions(+), 77 deletions(-) delete mode 100644 www/protected/views/candidato/_formCandidatoIdioma.php diff --git a/www/protected/config/main.php b/www/protected/config/main.php index adbf16b..ae1c347 100644 --- a/www/protected/config/main.php +++ b/www/protected/config/main.php @@ -8,6 +8,8 @@ return array( 'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 'name'=>'My Web Application', + 'theme'=>'intranet', + 'language'=>'es', // preloading 'log' component 'preload'=>array('log'), @@ -61,8 +63,8 @@ return array( ), 'errorHandler'=>array( - // use 'site/error' action to display errors - 'errorAction'=>'site/error', + // use 'site/error' action to display errors + 'errorAction'=>'site/error', ), 'log'=>array( 'class'=>'CLogRouter', @@ -87,5 +89,5 @@ return array( // this is used in contact page 'adminEmail'=>'webmaster@example.com', ), - 'theme'=>'intranet', + ); \ No newline at end of file diff --git a/www/protected/controllers/CandidatoController.php b/www/protected/controllers/CandidatoController.php index 1e692da..df605f5 100644 --- a/www/protected/controllers/CandidatoController.php +++ b/www/protected/controllers/CandidatoController.php @@ -57,25 +57,94 @@ class CandidatoController extends Controller */ public function actionCreate() { - $model=new Candidato; + Yii::import('ext.multimodelform.MultiModelForm'); + + $model = new Candidato; + $idioma = new CandidatoIdioma(); + $titulacion = new CandidatoTitulacion(); + + $idiomasValidos = array(); + $titulacionesValidas = array(); + + // Uncomment the following line if AJAX validation is needed + //$this->performAjaxValidation($model); - // Uncomment the following line if AJAX validation is needed - //$this->performAjaxValidation($model); + /*if(isset($_POST['Candidato'])) + { + $model->attributes=$_POST['Candidato']; + $foto=CUploadedFile::getInstance($model,'foto'); - if(isset($_POST['Candidato'])) - { - $model->attributes=$_POST['Candidato']; - $foto=CUploadedFile::getInstance($model,'foto'); + if ($model->validate()) + { + $foundInvalidChild = false; + $arrayIdiomas = array(); + if(isset($_POST['CandidatoIdioma'])) + { + foreach ($_POST['CandidatoIdioma'] as $idioma) + { + $CandidatoIdioma = new CandidatoIdioma; + $CandidatoIdioma->attributes = $idioma; - if ($model->save()) { - $this->guardarFoto($model->id, $foto); - $this->redirect(array('view','id'=>$model->id)); + if ($model->id) + $CandidatoIdioma->candidato_id = $model->id; + + if (!$CandidatoIdioma->validate()) + $foundInvalidChild = true; + + $arrayIdiomas[] = $CandidatoIdioma; } - } + } + } - $this->render('create',array( - 'model'=>$model, - )); + if (!$foundInvalidChild && $model->save()) { + $this->guardarFoto($model->id, $foto); + + // Guardar los idiomas + foreach($arrayIdiomas as $CandidatoIdioma) + { + $CandidatoIdioma->candidato_id = $model->id; + $CandidatoIdioma->save(); + } + + Yii::app()->user->setFlash('success', "Candidato dado de alta correctamente."); + $this->redirect(array('index')); + } + }*/ + + if (isset($_POST['Candidato'])) { + $model->attributes=$_POST['Candidato']; + $foto=CUploadedFile::getInstance($model,'foto'); + + $foundInvalidChild = false; + + if ($model->validate()) { + if (!MultiModelForm::validate($model, $idiomasValidos, $idiomasBorrados)) + $foundInvalidChild = true; + + if (!MultiModelForm::validate($model, $titulacionesValidas, $titulacionesBorradas)) + $foundInvalidChild = true; + } + + if (!$foundInvalidChild && $model->save() ) { + $masterValues = array ('candidato_id'=>$model->id); + + if (MultiModelForm::save($model, $idiomasValidos, $idiomasBorrados, $masterValues) && + MultiModelForm::save($model, $titulacionesValidas, $titulacionesBorradas, $masterValues)) + { + $this->guardarFoto($model->id, $foto); + Yii::app()->user->setFlash('success', "Candidato dado de alta correctamente."); + $this->redirect(array('index')); + } + } + } + + $this->render('create',array( + 'model'=>$model, + 'idioma'=>$idioma, + 'titulacion'=>$titulacion, + 'idiomasValidos'=>$idiomasValidos, + 'titulacionesValidas'=>$titulacionesValidas, + )); } /** @@ -85,24 +154,85 @@ class CandidatoController extends Controller */ public function actionUpdate($id) { - $model=$this->loadModel($id); + Yii::import('ext.multimodelform.MultiModelForm'); + + $model=$this->loadModel($id); + $idioma=new CandidatoIdioma(); + $titulacion = new CandidatoTitulacion(); + + $idiomasValidos = array(); + $titulacionesValidas = array(); - // Uncomment the following line if AJAX validation is needed - //$this->performAjaxValidation($model); + // Uncomment the following line if AJAX validation is needed + //$this->performAjaxValidation($model); - if(isset($_POST['Candidato'])) - { - $foto=CUploadedFile::getInstance($model,'foto'); - $model->attributes=$_POST['Candidato']; - if($model->save()) { - $this->guardarFoto($model->id, $foto); - $this->redirect(array('view','id'=>$model->id)); + /*if(isset($_POST['Candidato'])) + { + $foto=CUploadedFile::getInstance($model,'foto'); + $model->attributes=$_POST['Candidato']; + + if ($model->validate()) + { + $foundInvalidChild = false; + $arrayIdiomas = array(); + if(isset($_POST['CandidatoIdioma'])) + { + foreach ($_POST['CandidatoIdioma'] as $idioma) + { + //$CandidatoIdioma = CandidatoIdioma::model()->findB; + //CandidatoIdioma::model()->deleteAllByAttributes($arrayIdiomas) + + $CandidatoIdioma->attributes = $idioma; + + + if ($model->id) + $CandidatoIdioma->candidato_id = $model->id; + + if (!$CandidatoIdioma->validate()) + $foundInvalidChild = true; + + $arrayIdiomas[] = $CandidatoIdioma; + } } - } + } - $this->render('update',array( - 'model'=>$model, - )); + if (!$foundInvalidChild && $model->save()) { + $this->guardarFoto($model->id, $foto); + + // Guardar los idiomas + foreach($arrayIdiomas as $CandidatoIdioma) + { + $CandidatoIdioma->candidato_id = $model->id; + $CandidatoIdioma->save(); + } + + Yii::app()->user->setFlash('success', "Candidato actualizado correctamente."); + //$this->redirect(array('view','id'=>$model->id)); + } + }*/ + + if(isset($_POST['Candidato'])) { + $foto=CUploadedFile::getInstance($model,'foto'); + $model->attributes=$_POST['Candidato']; + + //the value for the foreign key 'candidato_id' + $masterValues = array ('candidato_id'=>$model->id); + + //Save the master model after saving valid members + if (MultiModelForm::save($idioma, $validatedIdiomas, $deleteIdiomas, $masterValues) && $model->save() ) { + $this->guardarFoto($model->id, $foto); + Yii::app()->user->setFlash('success', "Candidato actualizado correctamente."); + //$this->redirect(array('view','id'=>$model->id)); + } + } + + $this->render('update',array( + 'model'=>$model, + 'idioma'=>$idioma, + 'titulacion'=>$titulacion, + 'idiomasValidos'=>$idiomasValidos, + 'titulacionesValidas'=>$titulacionesValidas, + )); } /** diff --git a/www/protected/migrations/m120130_120838_tbl_idiomas.php b/www/protected/migrations/m120130_120838_tbl_idiomas.php index a7d18b6..d33827a 100644 --- a/www/protected/migrations/m120130_120838_tbl_idiomas.php +++ b/www/protected/migrations/m120130_120838_tbl_idiomas.php @@ -12,7 +12,7 @@ class m120130_120838_tbl_idiomas extends CDbMigration public function down() { - $this->dropTable('tbl_idiomas'); + $this->dropTable('tbl_idiomas'); } /* diff --git a/www/protected/models/Candidato.php b/www/protected/models/Candidato.php index bdcaa39..3e03b0e 100644 --- a/www/protected/models/Candidato.php +++ b/www/protected/models/Candidato.php @@ -25,7 +25,7 @@ class Candidato extends CActiveRecord const GENERO_MUJER=1; public $foto; - + /** * Devuelve la lista de géneros de un candidato. * @return array lista de géneros permitidos diff --git a/www/protected/runtime/application.log b/www/protected/runtime/application.log index 954ce2c..62c4296 100644 --- a/www/protected/runtime/application.log +++ b/www/protected/runtime/application.log @@ -3810,3 +3810,3287 @@ REQUEST_URI=/intranet/index.php?r=candidato/create in C:\Intranet\www\protected\models\CandidatoIdiomaManager.php (25) in C:\Intranet\www\protected\extensions\TabularInputManager.php (111) in C:\Intranet\www\protected\controllers\CandidatoController.php (77) +2012/02/08 16:03:00 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) +#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') +#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') +#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#11 C:\Intranet\www\index.php(13): CApplication->run() +#12 {main} +REQUEST_URI=/intranet/index.php?r=candidato/update +--- +2012/02/08 16:10:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:10:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:11:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\controllers\CandidatoController.php (142) +in C:\Intranet\www\index.php (13) +2012/02/08 16:14:42 [error] [php] Attempt to assign property of non-object (C:\Intranet\www\protected\controllers\CandidatoController.php:145) +Stack trace: +#0 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#1 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#2 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#3 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#4 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#5 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#7 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#8 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#9 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#10 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#11 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#12 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\protected\controllers\CandidatoController.php (145) +in C:\Intranet\www\index.php (13) +2012/02/08 16:15:08 [error] [php] Attempt to assign property of non-object (C:\Intranet\www\protected\controllers\CandidatoController.php:146) +Stack trace: +#0 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#1 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#2 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#3 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#4 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#5 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#6 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#7 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#8 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#9 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#10 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#11 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#12 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\protected\controllers\CandidatoController.php (146) +in C:\Intranet\www\index.php (13) +2012/02/08 16:43:33 [error] [php] include(Idiomas.php) [function.include]: failed to open stream: No such file or directory (C:\Intranet\yii\framework\YiiBase.php:418) +Stack trace: +#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(173): spl_autoload_call() +#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#10 unknown(0): CandidatoController->actionUpdate() +#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (173) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:43:44 [error] [php] strcmp() expects parameter 2 to be string, object given (C:\Intranet\yii\framework\web\helpers\CHtml.php:948) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#1 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#2 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#3 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#6 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#7 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#8 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#9 unknown(0): CandidatoController->actionUpdate() +#10 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:44:11 [error] [php] Object of class Idioma could not be converted to string (C:\Intranet\yii\framework\web\helpers\CHtml.php:144) +Stack trace: +#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(174): radioButtonList() +#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#10 unknown(0): CandidatoController->actionUpdate() +#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:44:46 [error] [php] Object of class Idioma could not be converted to string (C:\Intranet\yii\framework\web\helpers\CHtml.php:144) +Stack trace: +#0 C:\Intranet\www\themes\intranet\views\candidato\_form.php(174): radioButtonList() +#1 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#2 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#3 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#4 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#7 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#8 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#9 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#10 unknown(0): CandidatoController->actionUpdate() +#11 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#12 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#13 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#14 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#15 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#17 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#18 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#19 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#20 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#22 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#23 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (174) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:45:50 [error] [php] Missing argument 2 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#8 unknown(0): CandidatoController->actionUpdate() +#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:47:43 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#8 unknown(0): CandidatoController->actionUpdate() +#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:47:43 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#8 unknown(0): CandidatoController->actionUpdate() +#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 16:47:48 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#8 unknown(0): CandidatoController->actionUpdate() +#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 17:03:16 [error] [php] Missing argument 3 for CHtml::listData(), called in C:\Intranet\www\themes\intranet\views\candidato\_form.php on line 171 and defined (C:\Intranet\yii\framework\web\helpers\CHtml.php:1652) +Stack trace: +#0 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#1 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#2 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#7 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#8 unknown(0): CandidatoController->actionUpdate() +#9 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#10 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#11 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#13 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#14 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#15 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#17 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (171) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 17:09:14 [error] [exception.CException] exception 'CException' with message 'Property "CandidatoIdioma.0" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:131 +Stack trace: +#0 C:\Intranet\yii\framework\db\ar\CActiveRecord.php(144): CComponent->__get('0') +#1 C:\Intranet\yii\framework\base\CModel.php(593): CActiveRecord->__get('0') +#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(173): CModel->offsetGet(0) +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#5 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CController->renderPartial('_form', Array) +#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#9 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#10 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) +#11 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CController->render('update', Array) +#12 [internal function]: CandidatoController->actionUpdate('28') +#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) +#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) +#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#22 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') +#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') +#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#26 C:\Intranet\www\index.php(13): CApplication->run() +#27 {main} +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +--- +2012/02/08 17:15:59 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (C:\Intranet\yii\framework\web\helpers\CHtml.php:85) +Stack trace: +#0 C:\Intranet\yii\framework\web\helpers\CHtml.php(140): renderAttributes() +#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(772): tag() +#2 C:\Intranet\www\themes\intranet\views\candidato\_form.php(179): dropDownList() +#3 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#4 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#5 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#6 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#7 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#8 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#9 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#10 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#11 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#12 unknown(0): CandidatoController->actionUpdate() +#13 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#14 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#15 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#16 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#17 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#18 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#19 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#20 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#21 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#22 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#23 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#24 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#25 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#26 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (179) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/08 17:32:12 [error] [php] Undefined variable: name (C:\Intranet\www\themes\intranet\views\candidato\_form.php:175) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(174): CandidatoController->render() +#7 unknown(0): CandidatoController->actionUpdate() +#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=28 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (175) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (174) +2012/02/14 16:10:42 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) +in C:\Intranet\www\protected\controllers\CandidatoController.php (109) +2012/02/14 16:10:59 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) +in C:\Intranet\www\protected\controllers\CandidatoController.php (109) +2012/02/14 16:11:08 [error] [php] Undefined variable: id (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:4) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(23): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (4) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (23) +in C:\Intranet\www\protected\controllers\CandidatoController.php (109) +2012/02/14 16:11:31 [error] [php] Undefined variable: id (C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php:21) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(23): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(109): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_formCandidatoIdioma.php (21) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (23) +in C:\Intranet\www\protected\controllers\CandidatoController.php (109) +2012/02/16 15:52:04 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:04 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:05 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) +#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') +#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/view/...') +#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#11 C:\Intranet\www\index.php(13): CApplication->run() +#12 {main} +REQUEST_URI=/intranet/index.php/candidato/view/index +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:11 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:13 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:13 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:14 [error] [exception.CHttpException.400] exception 'CHttpException' with message 'Your request is invalid.' in C:\Intranet\yii\framework\web\CController.php:337 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(310): CController->invalidActionParams(Object(CInlineAction)) +#1 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#2 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#3 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#4 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#6 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#7 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#8 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('view') +#9 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('usuario/view/in...') +#10 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#11 C:\Intranet\www\index.php(13): CApplication->run() +#12 {main} +REQUEST_URI=/intranet/index.php/usuario/view/index +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:15 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 15:52:16 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The system is unable to find the requested action "images".' in C:\Intranet\yii\framework\web\CController.php:484 +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(271): CController->missingAction('images') +#1 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('images') +#2 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('site/images/ava...') +#3 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#4 C:\Intranet\www\index.php(13): CApplication->run() +#5 {main} +REQUEST_URI=/intranet/index.php/site/images/avatar.png +HTTP_REFERER=http://localhost/intranet/index.php/site/index +--- +2012/02/16 16:00:06 [error] [php] Undefined variable: idiomaFormConfig (C:\Intranet\www\themes\intranet\views\candidato\_form.php:189) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (189) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) +in C:\Intranet\www\protected\controllers\CandidatoController.php (116) +2012/02/16 16:00:26 [error] [php] Undefined variable: member (C:\Intranet\www\themes\intranet\views\candidato\_form.php:197) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (197) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) +in C:\Intranet\www\protected\controllers\CandidatoController.php (116) +2012/02/16 16:00:59 [error] [php] Undefined variable: foundInvalidChild (C:\Intranet\www\protected\controllers\CandidatoController.php:97) +Stack trace: +#0 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#1 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#6 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\protected\controllers\CandidatoController.php (97) +in C:\Intranet\www\index.php (13) +2012/02/16 16:14:01 [error] [exception.CException] exception 'CException' with message 'Property "MultiModelForm.$removeText" is not defined.' in C:\Intranet\yii\framework\base\CComponent.php:174 +Stack trace: +#0 C:\Intranet\yii\framework\web\CWidgetFactory.php(162): CComponent->__set('$removeText', 'Eliminar idioma') +#1 C:\Intranet\yii\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(CandidatoController), 'ext.multimodelf...', Array) +#2 C:\Intranet\yii\framework\web\CBaseController.php(173): CBaseController->createWidget('ext.multimodelf...', Array) +#3 C:\Intranet\www\themes\intranet\views\candidato\_form.php(201): CBaseController->widget('ext.multimodelf...', Array) +#4 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#5 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#6 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#7 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CController->renderPartial('_form', Array) +#8 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#9 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#10 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#11 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('create', Array, true) +#12 C:\Intranet\www\protected\controllers\CandidatoController.php(116): CController->render('create', Array) +#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#21 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('create') +#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/creat...') +#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 C:\Intranet\www\index.php(13): CApplication->run() +#26 {main} +REQUEST_URI=/intranet/index.php?r=candidato/create +--- +2012/02/16 16:29:17 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:17) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(200): CandidatoController->render() +#7 unknown(0): CandidatoController->actionUpdate() +#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=29 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (17) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (200) +2012/02/16 16:45:41 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:17) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\update.php(18): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() +#7 unknown(0): CandidatoController->actionUpdate() +#8 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#9 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#10 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#12 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#14 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#16 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#18 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#19 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#20 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (17) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (18) +in C:\Intranet\www\protected\controllers\CandidatoController.php (215) +2012/02/16 16:46:59 [error] [php] Undefined variable: idioma (C:\Intranet\www\themes\intranet\views\candidato\update.php:20) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#2 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() +#3 unknown(0): CandidatoController->actionUpdate() +#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#17 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 +in C:\Intranet\www\themes\intranet\views\candidato\update.php (20) +in C:\Intranet\www\protected\controllers\CandidatoController.php (215) +in C:\Intranet\www\index.php (13) +2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 17:46:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:04:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:12:24 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/16 18:12:24 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:07:18 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:16:22 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:55) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(155): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() +#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#10 C:\Intranet\www\protected\controllers\CandidatoController.php(134): CandidatoController->render() +#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (55) +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (155) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) +2012/02/20 10:16:48 [error] [php] Undefined variable: model (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:58) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(155): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\www\themes\intranet\views\candidato\create.php(20): CandidatoController->renderPartial() +#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#10 C:\Intranet\www\protected\controllers\CandidatoController.php(134): CandidatoController->render() +#11 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#12 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#14 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#16 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#17 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#18 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#19 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#20 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#21 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (58) +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (155) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (20) +2012/02/20 10:20:57 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:20:57 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:22:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:22:39 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:25:11 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:25:11 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:26:32 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:26:32 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:29:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:29:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:30:25 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:30:25 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:31:22 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:31:22 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:32:52 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:32:52 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:35:32 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:35:32 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:37:09 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:37:09 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:37:09 [error] [php] Undefined variable: form (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:41) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() +#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#10 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CandidatoController->render() +#11 unknown(0): CandidatoController->actionUpdate() +#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=31 +in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (41) +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (159) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (22) +2012/02/20 10:38:46 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:38:46 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:39:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:39:06 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:39:27 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:39:27 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:49:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:49:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:49:54 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:49:54 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:50:01 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:50:01 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:53:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:53:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:53:45 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:53:45 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:54:26 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:54:26 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:57:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:57:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:58:24 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:58:24 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:58:36 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:58:36 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:59:35 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 10:59:35 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:00:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:00:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:01:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:01:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:02:09 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:02:09 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:04:34 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:04:34 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:05:05 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:05:05 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:05:13 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:05:13 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:08:25 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:08:25 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:08:41 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:08:41 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:09:39 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:09:39 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:11:12 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:11:12 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:14:33 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:14:33 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:15:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:15:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:17:33 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:17:33 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:18:01 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:18:01 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:28:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:28:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:28:51 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:28:51 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:29:48 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:29:48 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:29:59 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:29:59 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:31:38 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:31:38 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:05 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:05 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:44 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:44 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:56 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:39:56 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:40:50 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:40:50 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:42:31 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:42:31 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:42:51 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:42:51 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:06 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:06 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:30 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:30 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:49 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:43:49 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:44:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 11:44:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 15:52:56 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (C:\Intranet\yii\framework\web\helpers\CHtml.php:85) +Stack trace: +#0 C:\Intranet\yii\framework\web\helpers\CHtml.php(140): renderAttributes() +#1 C:\Intranet\yii\framework\web\helpers\CHtml.php(1412): tag() +#2 C:\Intranet\yii\framework\web\form\CFormInputElement.php(209): activeDropDownList() +#3 C:\Intranet\yii\framework\web\form\CFormInputElement.php(171): CFormInputElement->renderInput() +#4 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1029): CFormInputElement->render() +#5 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1111): MultiModelRenderForm->renderFormElements() +#6 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(849): MultiModelRenderForm->render() +#7 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() +#8 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(76): CandidatoController->widget() +#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#11 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#12 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CandidatoController->renderPartial() +#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#15 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#16 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() +#17 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#18 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#19 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#20 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#21 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CandidatoController->render() +#22 unknown(0): CandidatoController->actionUpdate() +#23 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#24 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#25 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#26 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#27 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#28 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#29 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#30 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#31 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#32 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#33 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#34 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#35 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#36 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=31 +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (1029) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (1111) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (849) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:10 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:23 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:08:40 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:09:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:13:17 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/20 16:53:49 [error] [exception.CException] exception 'CException' with message 'CFormStringElement and its behaviors do not have a method or closure named "getRequired".' in C:\Intranet\yii\framework\base\CComponent.php:266 +Stack trace: +#0 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(947): CComponent->__call('getRequired', Array) +#1 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(947): CFormStringElement->getRequired() +#2 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(765): MultiModelRenderForm->renderTableHeader() +#3 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(817): MultiModelForm->renderTableBegin(true) +#4 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() +#5 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(76): CBaseController->widget('ext.multimodelf...', Array) +#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#8 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#9 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CController->renderPartial('_idiomas', Array) +#10 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#11 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#12 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#13 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CController->renderPartial('_form', Array) +#14 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#15 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#16 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#17 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) +#18 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CController->render('update', Array) +#19 [internal function]: CandidatoController->actionUpdate('30') +#20 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) +#21 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) +#22 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#23 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#24 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#25 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#26 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#27 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#28 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#29 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#30 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') +#31 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') +#32 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#33 C:\Intranet\www\index.php(13): CApplication->run() +#34 {main} +REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 +HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/update&id=30 +--- +2012/02/20 16:58:22 [error] [exception.CException] exception 'CException' with message 'Property "MultiModelRenderForm.removeLinkWrapper" is not defined.' in C:\Intranet\yii\framework\web\form\CFormElement.php:86 +Stack trace: +#0 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1057): CFormElement->__get('removeLinkWrapp...') +#1 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(1116): MultiModelRenderForm->renderFormElements() +#2 C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php(870): MultiModelRenderForm->render() +#3 C:\Intranet\yii\framework\web\CBaseController.php(174): MultiModelForm->run() +#4 C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php(77): CBaseController->widget('ext.multimodelf...', Array) +#5 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#6 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#7 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#8 C:\Intranet\www\themes\intranet\views\candidato\_form.php(159): CController->renderPartial('_idiomas', Array) +#9 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#10 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#11 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#12 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CController->renderPartial('_form', Array) +#13 C:\Intranet\yii\framework\web\CBaseController.php(127): require('C:\Intranet\www...') +#14 C:\Intranet\yii\framework\web\CBaseController.php(96): CBaseController->renderInternal('C:\Intranet\www...', Array, true) +#15 C:\Intranet\yii\framework\web\CController.php(870): CBaseController->renderFile('C:\Intranet\www...', Array, true) +#16 C:\Intranet\yii\framework\web\CController.php(783): CController->renderPartial('update', Array, true) +#17 C:\Intranet\www\protected\controllers\CandidatoController.php(217): CController->render('update', Array) +#18 [internal function]: CandidatoController->actionUpdate('30') +#19 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) +#20 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) +#21 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#22 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#23 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#24 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#25 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#26 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#27 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#28 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#29 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') +#30 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') +#31 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#32 C:\Intranet\www\index.php(13): CApplication->run() +#33 {main} +REQUEST_URI=/intranet/index.php?r=candidato/update&id=30 +HTTP_REFERER=http://localhost/intranet/index.php?r=candidato/update&id=30 +--- +2012/02/21 18:02:07 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'The requested page does not exist.' in C:\Intranet\www\protected\controllers\CandidatoController.php:278 +Stack trace: +#0 C:\Intranet\www\protected\controllers\CandidatoController.php(144): CandidatoController->loadModel('27') +#1 [internal function]: CandidatoController->actionUpdate('27') +#2 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(CandidatoController), Array) +#3 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(CandidatoController), Object(ReflectionMethod), Array) +#4 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#5 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#6 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 C:\Intranet\yii\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#8 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#10 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#12 C:\Intranet\yii\framework\web\CWebApplication.php(276): CController->run('update') +#13 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController('candidato/updat...') +#14 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 C:\Intranet\www\index.php(13): CApplication->run() +#16 {main} +REQUEST_URI=/intranet/index.php?r=candidato/update&id=27 +--- +2012/02/21 18:02:32 [error] [php] Undefined variable: idioma (C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php:21) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\_form.php(163): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\www\themes\intranet\views\candidato\update.php(22): CandidatoController->renderPartial() +#6 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#7 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#8 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#9 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#10 C:\Intranet\www\protected\controllers\CandidatoController.php(215): CandidatoController->render() +#11 unknown(0): CandidatoController->actionUpdate() +#12 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#13 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#14 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#16 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#18 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#19 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#20 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#21 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#22 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#23 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#24 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=3 +in C:\Intranet\www\themes\intranet\views\candidato\_idiomas.php (21) +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (163) +in C:\Intranet\www\themes\intranet\views\candidato\update.php (22) +2012/02/21 18:23:32 [error] [php] Undefined variable: validatedIdiomas (C:\Intranet\www\themes\intranet\views\candidato\_form.php:21) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\www\themes\intranet\views\candidato\create.php(22): CandidatoController->renderPartial() +#2 C:\Intranet\yii\framework\web\CBaseController.php(127): require() +#3 C:\Intranet\yii\framework\web\CBaseController.php(96): CandidatoController->renderInternal() +#4 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#5 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#6 C:\Intranet\www\protected\controllers\CandidatoController.php(147): CandidatoController->render() +#7 C:\Intranet\yii\framework\web\actions\CInlineAction.php(50): CandidatoController->actionCreate() +#8 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#10 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#13 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#15 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#16 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#17 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\themes\intranet\views\candidato\_form.php (21) +in C:\Intranet\www\themes\intranet\views\candidato\create.php (22) +in C:\Intranet\www\protected\controllers\CandidatoController.php (147) +2012/02/22 16:05:26 [error] [php] Undefined variable: titulacion (C:\Intranet\www\themes\intranet\views\candidato\update.php:23) +Stack trace: +#0 C:\Intranet\yii\framework\web\CController.php(870): CandidatoController->renderFile() +#1 C:\Intranet\yii\framework\web\CController.php(783): CandidatoController->renderPartial() +#2 C:\Intranet\www\protected\controllers\CandidatoController.php(230): CandidatoController->render() +#3 unknown(0): CandidatoController->actionUpdate() +#4 C:\Intranet\yii\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#5 C:\Intranet\yii\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#6 C:\Intranet\yii\framework\web\CController.php(309): CInlineAction->runWithParams() +#7 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#8 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#9 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#10 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#11 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#12 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#13 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#14 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#15 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#16 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#17 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/update&id=1 +in C:\Intranet\www\themes\intranet\views\candidato\update.php (23) +in C:\Intranet\www\protected\controllers\CandidatoController.php (230) +in C:\Intranet\www\index.php (13) +2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:07:00 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:11:02 [warning] [application] Failed to set unsafe attribute "candidato_id" of "CandidatoIdioma". +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (439) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (372) +in C:\Intranet\www\protected\extensions\multimodelform\MultiModelForm.php (311) +2012/02/22 16:20:51 [error] [php] Undefined variable: foundInvalidChild (C:\Intranet\www\protected\controllers\CandidatoController.php:128) +Stack trace: +#0 C:\Intranet\yii\framework\web\filters\CFilterChain.php(134): CandidatoController->runAction() +#1 C:\Intranet\yii\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 C:\Intranet\yii\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 C:\Intranet\yii\framework\web\filters\CInlineFilter.php(59): CandidatoController->filterAccessControl() +#4 C:\Intranet\yii\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 C:\Intranet\yii\framework\web\CController.php(292): CFilterChain->run() +#6 C:\Intranet\yii\framework\web\CController.php(266): CandidatoController->runActionWithFilters() +#7 C:\Intranet\yii\framework\web\CWebApplication.php(276): CandidatoController->run() +#8 C:\Intranet\yii\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 C:\Intranet\yii\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 C:\Intranet\www\index.php(13): CWebApplication->run() +REQUEST_URI=/intranet/index.php?r=candidato/create +in C:\Intranet\www\protected\controllers\CandidatoController.php (128) +in C:\Intranet\www\index.php (13) diff --git a/www/protected/views/candidato/_formCandidatoIdioma.php b/www/protected/views/candidato/_formCandidatoIdioma.php deleted file mode 100644 index 510eeb9..0000000 --- a/www/protected/views/candidato/_formCandidatoIdioma.php +++ /dev/null @@ -1,30 +0,0 @@ - - - textField($model,"[$id]idioma"); ?> - error($model,"idioma"); ?> - - - - - textField($model,"[$id]conversacion"); ?> - error($model,"conversacion"); ?> - - - - textField($model,"[$id]lectura_traduccion"); ?> - error($model,"lectura_traduccion"); ?> - - - - '', - 'params'=>array( - 'CandidatoIdioma[command]'=>'delete', - 'CandidatoIdioma[id]'=>$id, - 'noValidate'=>true) - ));?> - - \ No newline at end of file diff --git a/www/themes/intranet/css/custom.css b/www/themes/intranet/css/custom.css index e6271bc..638c7ac 100644 --- a/www/themes/intranet/css/custom.css +++ b/www/themes/intranet/css/custom.css @@ -62,3 +62,34 @@ span.timestamp { color: #006699; } +.button.plain { + background: none repeat scroll 0 0 #F2F2F2; + border: 1px solid #DDDDDD; + border-radius: 0 0 0 0; + box-shadow: none; + color: #666; + height: 22px; + line-height: 22px; + margin: -4px -4px -4px 0; + padding: 0 14px; + text-decoration: none; + text-shadow: 0 1px 0 #FFFFFF; + font-weight: bold; + display: inline-block; +} + +.button.plain:hover { + color: #333; + background: none repeat scroll 0 0 #E2E2E2; +} + +.button.plain:first-child { + border-bottom-left-radius: 2px; + border-top-left-radius: 2px; +} + +.button.plain:last-child { + border-bottom-right-radius: 2px; + border-top-right-radius: 2px; +} + diff --git a/www/themes/intranet/css/style.css b/www/themes/intranet/css/style.css index 53de5fa..e68f445 100644 --- a/www/themes/intranet/css/style.css +++ b/www/themes/intranet/css/style.css @@ -362,7 +362,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .form_default fieldset { border: 1px solid #ccc; padding: 20px; background: #f7f7f7; } .form_default legend { text-transform: uppercase; } .form_default p { margin: 20px 0 !important; } -.form_default label { width: 150px; float: left; text-align: right; padding-top: 5px; margin-right: 20px; } +.form_default label { width: 130px; float: left; text-align: right; padding-top: 5px; margin-right: 20px; } .form_default input[type=text], .form_default input[type=password] { font-size: 12px; padding: 8px 5px; border: 1px solid #ccc; background: #fcfcfc; outline: none; } .form_default input[type=text], .form_default input[type=password] { -moz-box-shadow: inset 1px 1px 3px #ccc; -webkit-box-shadow: inset 1px 1px 3px #ccc; box-shadow: inset 1px 1px 3px #ccc; } @@ -450,7 +450,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .sTable2 tbody tr.even td { background: #fcfcfc; } .sTable3 { border-collapse: collapse; } -.sTable3 thead td { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; } +.sTable3 thead td, .sTable3 thead th { padding: 5px 10px; background: #eee url(../images/thead.png) repeat-x top left; border-bottom: 1px solid #ccc; } .sTable3 tbody tr td { padding: 10px; background: #fff; border-top: 1px solid #eee; border-left: 1px solid #eee; } .sTable3 tbody tr.even td { background: #fcfcfc; } @@ -578,6 +578,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .loaders img { vertical-align: middle; display: inline-block; margin-right: 10px; } .padding15 { padding: 15px; overflow: hidden; } .padding1020 { padding: 10px 20px; } +.padding020 { padding: 0px 20px; } .padding20 { padding: 20px; overflow: hidden; } .borderbottom { border-bottom: 1px solid #eee; } .floatleft { float: left; } @@ -597,7 +598,7 @@ input[type=radio], input[type=checkbox] { margin: 0; padding: 0; vertical-align: .inlineblock { display: inline-block; } .alignright { text-align: right; } .bordertop { border-top: 1px solid #ccc; } - +.fullwidth { width: 100%; } /***CUSTOM STYLES***/ .operations > ul {list-style: none;} diff --git a/www/themes/intranet/views/candidato/_form.php b/www/themes/intranet/views/candidato/_form.php index 9d442d4..2d8de61 100644 --- a/www/themes/intranet/views/candidato/_form.php +++ b/www/themes/intranet/views/candidato/_form.php @@ -1,5 +1,5 @@ clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/custom/elements.js'); +//Yii::app()->clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/custom/elements.js'); ?> beginWidget('CActiveForm', array( @@ -14,7 +14,7 @@ Yii::app()->clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/c

Los campos marcados con * son obligatorios.

- errorSummary($model, "", "", array('class'=>"notification msgerror")); ?> + errorSummary(array_merge(array($model), $idiomasValidos, $titulacionesValidas), "", "", array('class'=>"notification msgerror")); ?>
@@ -135,9 +135,8 @@ Yii::app()->clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/c unset($lista[$provincia->id]); } } - echo CHtml::dropDownList( + echo CHtml::activeDropDownList($model, 'localidad', - $model->localidad, $lista, array( 'empty'=>'', @@ -152,15 +151,28 @@ Yii::app()->clientScript->registerScriptFile(Yii::app()->theme->baseUrl . '/js/c

+

Datos académicos

+ + renderPartial('_idiomas', array( + 'model'=>$model, + 'idioma'=>$idioma, + 'idiomasValidos'=>$idiomasValidos, + )); ?> + + renderPartial('_titulaciones', array( + 'model'=>$model, + 'titulacion'=>$titulacion, + 'titulacionesValidas'=>$titulacionesValidas, + )); ?> +

-
diff --git a/www/themes/intranet/views/candidato/create.php b/www/themes/intranet/views/candidato/create.php index c34b7f0..731edb2 100644 --- a/www/themes/intranet/views/candidato/create.php +++ b/www/themes/intranet/views/candidato/create.php @@ -14,5 +14,11 @@ $this->pageTitle='Nuevo candidato'; ?> renderPartial('_form', array( - 'model'=>$model, - )); ?> \ No newline at end of file + 'model'=>$model, + 'idioma'=>$idioma, + 'titulacion'=>$titulacion, + 'idiomasValidos'=>$idiomasValidos, + 'titulacionesValidas'=>$titulacionesValidas, + )); +?> + diff --git a/www/themes/intranet/views/candidato/index.php b/www/themes/intranet/views/candidato/index.php index 9853b7e..3b216ca 100644 --- a/www/themes/intranet/views/candidato/index.php +++ b/www/themes/intranet/views/candidato/index.php @@ -27,6 +27,9 @@ $('.search-form form').submit(function(){ $this->pageTitle='Gestión de candidatos'; ?> + + +

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done. diff --git a/www/themes/intranet/views/candidato/update.php b/www/themes/intranet/views/candidato/update.php index 3605992..1cead9d 100644 --- a/www/themes/intranet/views/candidato/update.php +++ b/www/themes/intranet/views/candidato/update.php @@ -11,8 +11,17 @@ $this->menu=array( array('label'=>'View Candidato', 'url'=>array('view', 'id'=>$model->id)), array('label'=>'Manage Candidato', 'url'=>array('admin')), ); + +$this->pageTitle='Modificar candidato ' . $model->nombre . ' ' . $model->apellidos; ?>

Update Candidato id; ?>

-renderPartial('_form', array('model'=>$model)); ?> \ No newline at end of file +renderPartial('_form', array( + 'model'=>$model, + 'idioma'=>$idioma, + 'titulacion'=>$titulacion, + 'idiomasValidos'=>$idiomasValidos, + 'titulacionesValidas'=>$titulacionesValidas, + )); +?> diff --git a/www/themes/intranet/views/layouts/default.php b/www/themes/intranet/views/layouts/default.php index bfc1fbe..08eeb7d 100644 --- a/www/themes/intranet/views/layouts/default.php +++ b/www/themes/intranet/views/layouts/default.php @@ -16,9 +16,13 @@ - - - +theme->baseUrl; + $cs = Yii::app()->getClientScript(); + $cs->registerCoreScript('jquery'); + $cs->registerScriptFile($base.'/js/plugins/jquery-ui-1.8.16.custom.min.js', CClientScript::POS_HEAD); + $cs->registerScriptFile($base.'/js/custom/general.js', CClientScript::POS_HEAD); +?> <?php echo CHtml::encode($this->pageTitle); ?>