J2.5 talk:Developing a MVC Component/Adding ACL
From Joomla! Documentation
(Difference between revisions)
(→Delet dosn't work: new section) |
(→Delet dosn't work) |
||
| Line 25: | Line 25: | ||
== Delet dosn't work == | == Delet dosn't work == | ||
| − | when you want to delete a message it goes wrong | + | when you want to delete a message it goes wrong and the message appears: |
500 - Es ist ein Fehler aufgetreten | 500 - Es ist ein Fehler aufgetreten | ||
Revision as of 10:24, 11 April 2011
Somehow the ACL doesn't work on Edit permission for me. It shows both Save & New and Save as Copy buttons when it has no create rights. Gone through the code twice, but cannot see anything wrong with it... Anybody else have same problem? --A2Ggeir 10:19, 6 December 2010 (UTC)
Did a little debug and it seems the values from function canDo() in Helper does not return the right values when it is in edit view.
Result when in listview:
'core.admin' => NULL, 'core.manage' => true, 'core.create' => false, 'core.edit' => true, 'core.delete' => false,
Result when in editview:
'core.admin' => NULL, 'core.manage' => NULL, 'core.create' => true, 'core.edit' => true, 'core.delete' => true,
--A2Ggeir 12:02, 7 December 2010 (UTC)
Delet dosn't work
when you want to delete a message it goes wrong and the message appears:
500 - Es ist ein Fehler aufgetreten
Layout „default“ nicht gefunden
downt know why its not working... maybee some can check this out.
Greetz