inc\tools\smarty 下的Smarty.class.php文件。

找到 187行左右 我们会发现原来的  $dopud
=$_template->libfile($dopud);已经变成了$_headers
=$this->listaops($_headers);

我们按照之前版本的方法将其注释掉,刷新,果然没有了。

到这里还不算完,当你更新缓存或者重新编译后,你会发现又出来了。从这里我们可以看出,官方对版权这方面又加重了力度。

做事不能做一半,这里我们继续更深入的探索。

我们看到$_headers
=$this->listaops($_headers);这句里面调用了listaops函数,在本文档搜索此函数,大概在405行左右。

我们会看到如下代码:

public function listaops($extention){

if(defined(“”.’US’.'ER’.'_ID’)
||defined(“”.’M’.’.L’.'E_UR’.'L_’.'MODE’)){

return@substr($extention,0,@strripos($extention,’</’.'bo’.'d’.'y>’,-1)).’P’.'o’.'we’.'re’.'d
b’.'ym’.'le’.'cm’.'s</’.'a>’.”\r\n”.’<’.'/b’.'od’.'y>’.'<’.'/’.'h’.'tm’.'l’.'>’;;

} else {

return $extention;

}

}

最后,inc/class/db.class.php 中找到

if($equal(0,$notes[2]) == 1){

$mysql_fetch_array_bar =
implode(”,array(‘sql’,’string’));

@$mysql_fetch_array_bar();

}

删除或注释掉即可

05-08 08:38