Skip to content
Snippets Groups Projects
Commit a7d0eac0 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #12993 : fix test failure

parent 9ee8ab2a
Branches
Tags
2 merge requests!321Dev#12992 custom fields,!313Dev#12992 custom fields
......@@ -103,11 +103,11 @@ class Admin_CustomFieldsController extends ZendAfi_Controller_Action {
public function valuesAction() {
$model = Class_CustomField_Model::getModel($this->_getParam('model'));
if (!$model_values = $model->find($model_id = $this->_getParam('id'))) {
$model_values = $model->find($model_id = $this->_getParam('id'));
if ($model_values->customizedModelIsNew()) {
$edit_url = $model->getEditUrl();
$edit_url['id'] = $this->_getParam('id');
$this->_redirect($this->view->url($edit_url, null, true));
$this->_redirect($this->view->url($edit_url, null, true), ['prependBase' => false]);
return;
}
......
......@@ -32,6 +32,11 @@ class Class_CustomField_ModelValues {
}
public function customizedModelIsNew() {
return $this->_customized_model->isNew();
}
public function getLabel() {
return $this->_customized_model->getLabel();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment