function htmlpurifier_cron in HTML Purifier 6.2
Same name and namespace in other branches
- 6 htmlpurifier.module \htmlpurifier_cron()
- 7.2 htmlpurifier.module \htmlpurifier_cron()
- 7 htmlpurifier.module \htmlpurifier_cron()
Implementation of hook_cron().
File
- ./
htmlpurifier.module, line 35 - Implements HTML Purifier as a Drupal filter.
Code
function htmlpurifier_cron() {
// Force an attempt at checking for a new version; this is safe to do in
// hook_cron because a slow timeout will not degrade the user experience.
htmlpurifier_check_version(TRUE);
}