hello
thank you for taking time to look at this problem
I modified with: protected $_dependentTables = array('players' =>
'Test_Model_DbTable_Player');
although, ZF doc never tells to use keys in $_dependentTables array
I do not have infinite loop anymore but still have this exception:
Zend_View_Exception: script 'admin-country/form.phtml' not found in
path (
.../application/modules/test/views/scripts/:
.../application/../library/Centurion/Contrib/translation/views/
scripts/:
.../application/../library/Centurion/Contrib/media/views/scripts/:
.../application/../library/Centurion/Contrib/admin/views/scripts/:
.../application/views/scripts/:
.../application/../library/Centurion/Contrib/core/views/scripts/
) thrown in .../library/Zend/View/Abstract.php on line 976
On 23 jan, 18:01, Laurent Chenay <
l...@centurion-project.org> wrote:
> Pretty good bug that you have here.
>
> You have wrong written the variable $_dependentTables in
> your Test_Model_DbTable_Country.
> It must be like this:
>
> $_dependentTables = array(
> 'name_of_relation' => 'Class',
> 'name_of_relation2' => 'Class2',
> ...
> );
>
> You forget the key value.
>
> Laurent Chenay
> --
>
> 2012/1/16 Aurelien <
aurelien.mil...@gmail.com>