Remove debug text on rules controller

This commit is contained in:
Zachary Doll 2013-11-12 08:42:08 -06:00
parent 947562ca34
commit f450ea931d

View File

@ -37,7 +37,6 @@ class RulesController extends YagaController {
public static function GetRules() {
$Rules = Gdn::Cache()->Get('Yaga.Badges.Rules');
if($Rules === Gdn_Cache::CACHEOP_FAILURE) {
echo('Building Rules Cache');
foreach(glob(PATH_APPLICATIONS . DS . 'yaga' . DS . 'rules' . DS . '*.php') as $filename) {
include_once $filename;
}