Для обновления кешей календаря :
в admin/applications/forums/modules_public/forums/boards.php
После:
public function doExecute( ipsRegistry $registry )
{
//-----------------------------------------
// INIT
//-----------------------------------------
$this->registry->getClass('class_localization')->loadLanguageFile( array( 'public_boards' ) );
if (! $this->memberData['member_id'] )
{
$this->request['last_visit'] = time();
}
Добавить:
// Обновляем кэши календаря
$cache = $this->registry->cache();
$cache->rebuildCache( 'birthdays', 'calendar' );
$cache->rebuildCache( 'calendar_events', 'calendar' );
$cache->rebuildCache( 'calendars ', 'calendar' );
$cache->rebuildCache( 'rss_calendar', 'calendar' );
Обновит все кэши календаря, если какие-то не нужны - удали строчку.
Комментариев нет:
Отправить комментарий