Files
ultimatemember/core/um-cache.php
T

18 lines
213 B
PHP
Raw Normal View History

2015-01-14 00:09:28 +02:00
<?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 );
}
}