[phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/core/functions.php on line 449: Undefined variable $status [phpBB Debug] PHP Warning: in file [ROOT]/ext/sniper/mobiledevice/core/functions.php on line 449: Undefined variable $status Changes to add collapse into your exts if author has not updated them - dmzx-web.net
Use this to install an ext on your board no more ftp or path making. Path too install this ext is ext/boardtools/upload
Download is here Make it easy for us to solve your issues
public function collapse($event)
{
if ($this->operator !== null)
{
$fid = 'foo'; // can be any unique string to identify your extension's collapsible element
$this->template->assign_vars(array(
'S_FOO_HIDDEN' => $this->operator->is_collapsed($fid),
'U_FOO_COLLAPSE_URL' => $this->operator->get_collapsible_link($fid),
));
}
}