Reputation: 857
How can I delete current's page com_content cache ?
Something what I tried, but not working.
$cache =& JFactory::getCache();
$cache->clean(413, "com_content");
Upvotes: 1
Views: 707
Reputation: 6887
<?php
$cache =& JFactory::getCache();
$cache->cleanCache(413, "com_content");
?>
Upvotes: 1