From f263e898da2700e1eb1035fb67652877a27eb932 Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Wed, 9 May 2012 13:38:47 +0900 Subject: [PATCH] Issue #1551626 by moshe weitzman: follow-up to disable page caching in cron callback --- core/modules/system/system.module | 1 + 1 file changed, 1 insertion(+) diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 987137b55267..f26bb07b93b9 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -1120,6 +1120,7 @@ function system_menu() { * @see system_cron_access(). */ function system_cron_page() { + drupal_page_is_cacheable(FALSE); drupal_cron_run(); // Returning nothing causes no output to be generated. -- GitLab