mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +02:00
Issue #210 Clear Cache after changes. Partial fix. Needs to also run after inline editing.
This commit is contained in:
@@ -108,6 +108,19 @@ class links_admin_ui extends e_admin_ui
|
||||
* @var array
|
||||
*/
|
||||
protected $_link_array = null;
|
||||
|
||||
|
||||
function afterCreate($newdata,$olddata, $id) //FIXME needs to work after inline editing too.
|
||||
{
|
||||
e107::getCache()->clearAll('content');
|
||||
}
|
||||
|
||||
function afterUpdate($newdata,$olddata, $id) //FIXME needs to work after inline editing too.
|
||||
{
|
||||
e107::getCache()->clearAll('content');
|
||||
}
|
||||
|
||||
|
||||
|
||||
function init()
|
||||
{
|
||||
|
Reference in New Issue
Block a user