Files
ultimatemember/core/um-cache.php
T
ultimatemember 1c4ca1802c Update 1.2.98
2015-05-18 14:12:50 +03:00

22 lines
302 B
PHP

<?php
class UM_Cache {
function __construct() {
add_action( 'init', array(&$this, 'do_not_cache' ) );
}
/***
*** @needed for some cache plugins
***/
function do_not_cache() {
if ( um_is_core_uri() && ! defined( 'DONOTCACHEPAGE' ) ) {
define( "DONOTCACHEPAGE", true );
}
}
}