Last Sync

This commit is contained in:
ultimatemember
2015-01-14 00:09:28 +02:00
parent f9ec4c05d1
commit 605d2d6213
24 changed files with 1022 additions and 15928 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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 );
}
}