Hi all, It appears that section inheriting does not work using the array syntax
feature [http://tinyurl.com/66fh8x]. In the example below, I expect that $allow
would be a merge of staff and anonymous. Does that look like a
reasonable expectation?
; config.php
;------------------
[anonymous]
allow[] = main.sign_in
allow[] = main.fail_auth
allow[] = main.deny_access
[staff:anonymous]
allow[] = app.delete
Get array
---------------
$conf = new Zend_Config_Ini('config.php','staff');
$allow = $conf->allow->toArray();
Dump $allow
---------------
array (
0 => 'app.delete'
)
Expected, Dump $allow:
---------------
array (
0 => 'app.delete',
1 => 'main.sign_in',
2 => 'main.fail_auth',
3 => 'main.deny_access'
)
________________________________