Files
ultimatemember/core/um-cache.php
T
2015-01-14 00:16:44 +02:00

18 lines
213 B
PHP

<?php
class UM_Cache {
function __construct() {
add_action( 'init', array(&$this, 'do_not_cache' ) );
}
function do_not_cache() {
if ( um_is_core_uri() )
define( "DONOTCACHEPAGE", true );
}
}