/source/class/helper/helper_mobile.php
搜索:
- $content = preg_replace_callback("/href="(\w+\.php)(.*?)"/", array(__CLASS__, 'mobileoutput_callback_mobilereplace_12'), $content);
复制代码
注释掉
/source/function/function_core.php
搜索:
- if(defined('IN_MOBILE') && strpos($string, 'mobile') === false && $islocation) {
- if (strpos($string, '?') === false) {
- $string = $string.'?mobile='.IN_MOBILE;
- } else {
- if(strpos($string, '#') === false) {
- $string = $string.'&mobile='.IN_MOBILE;
- } else {
- $str_arr = explode('#', $string);
- $str_arr[0] = $str_arr[0].'&mobile='.IN_MOBILE;
- $string = implode('#', $str_arr);
- }
- }
- }
复制代码
注释掉 |