# 低价二次开发 联系微信/电话17854945210 记录一次修复权限的问题 ![](https://img.kancloud.cn/0d/a5/0da5b649730131e63a70e78fe78fd32e_1421x799.png) ``` ewei_shopv2\core\inc\functions.php ``` ``` if (!function_exists('com')) { function com($name = '') { static $_coms = array(); if (isset($_coms[$name])) { return $_coms[$name]; } if($name == 'qiniu') { $data = m('cache')->getArray('qiniu', 'global'); if(empty($data['upload'])){ $_coms[$name] = false; return $_coms[$name]; } } $model = EWEI_SHOPV2_CORE . "com/" . strtolower($name) . '.php'; if (!is_file($model)) { return false; } require_once EWEI_SHOPV2_CORE . "inc/com_model.php"; require_once $model; $class_name = ucfirst($name) . '_EweiShopV2ComModel'; $_coms[$name] = new $class_name($name); if (com_perm_check_com($name)) { return $_coms[$name]; } //这里去掉就可以了 //这里去掉就可以了 //这里去掉就可以了 $_coms[$name] = false; return $_coms[$name]; } } `` ![](https://img.kancloud.cn/39/8d/398d3f9179ea81ed0d0047d91442c107_610x785.png) 这里去掉就可以了