mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Fix widget scan
This commit is contained in:
parent
77624244e6
commit
ca0a896fa3
@ -691,11 +691,11 @@ class Etemplate extends Etemplate\Widget\Template
|
||||
// Try to discover all widgets, as names don't always match tags (eg: listbox is in menupopup)
|
||||
foreach(scandir($dir=__DIR__ . '/Etemplate/Widget') as $filename)
|
||||
{
|
||||
if(substr($filname, -4) == '.php')
|
||||
if(substr($filename, -4) == '.php')
|
||||
{
|
||||
try
|
||||
{
|
||||
include_once($dir.$filename);
|
||||
include_once($dir.'/'.$filename);
|
||||
}
|
||||
catch(Exception $e)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user