|
@@ -65,6 +65,19 @@ class MobileServer extends BaseServer
|
|
|
$this->setExFiles($exfiles);
|
|
|
}
|
|
|
|
|
|
+ protected function is_exclude($file)
|
|
|
+ {
|
|
|
+ $ret = parent::is_exclude($file);
|
|
|
+ if($ret) {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ $path = BASE_ROOT_PATH . "/" . $this->mSubPath . "/";
|
|
|
+ $file = str_replace($path,'',$file);
|
|
|
+ return in_array($file,$this->mExFiles);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
protected function preLooper()
|
|
|
{
|
|
|
parent::preLooper();
|