mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-30 16:53:59 +00:00
Merge PR #86 into develop
This commit is contained in:
commit
21faa210dc
@ -53,7 +53,7 @@ class JedcheckerRulesEncoding extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all php files of the extension
|
||||
$files = JFolder::files($this->basedir, '.php$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.php$', true, true);
|
||||
|
||||
// Iterate through all files
|
||||
foreach ($files as $file)
|
||||
|
@ -55,7 +55,7 @@ class JedcheckerRulesErrorreporting extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all php files of the extension
|
||||
$files = JFolder::files($this->basedir, '.php$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.php$', true, true);
|
||||
|
||||
// Iterate through all files
|
||||
foreach ($files as $file)
|
||||
|
@ -54,7 +54,7 @@ class JedcheckerRulesFramework extends JEDcheckerRule
|
||||
*/
|
||||
public function check()
|
||||
{
|
||||
$files = JFolder::files($this->basedir, '.php$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.php$', true, true);
|
||||
$this->leftover_folders = explode(',', $this->params->get('leftover_folders'));
|
||||
|
||||
foreach ($files as $file)
|
||||
|
@ -55,7 +55,7 @@ class JedcheckerRulesGpl extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all php files of the extension
|
||||
$files = JFolder::files($this->basedir, '.php$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.php$', true, true);
|
||||
|
||||
// Iterate through all files
|
||||
foreach ($files as $file)
|
||||
|
@ -54,7 +54,7 @@ class JedcheckerRulesJexec extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all php files of the extension
|
||||
$files = JFolder::files($this->basedir, '.php$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.php$', true, true);
|
||||
|
||||
// Iterate through all files
|
||||
foreach ($files as $file)
|
||||
|
@ -55,7 +55,7 @@ class JedcheckerRulesXMLinfo extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all XML files of the extension
|
||||
$files = JFolder::files($this->basedir, '.xml$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.xml$', true, true);
|
||||
|
||||
// Iterate through all the xml files
|
||||
foreach ($files as $file)
|
||||
|
@ -53,7 +53,7 @@ class JedcheckerRulesXMLlicense extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all XML files of the extension
|
||||
$files = JFolder::files($this->basedir, '.xml$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.xml$', true, true);
|
||||
|
||||
// Iterate through all the xml files
|
||||
foreach ($files as $file)
|
||||
|
@ -53,7 +53,7 @@ class JedcheckerRulesXMLUpdateServer extends JEDcheckerRule
|
||||
public function check()
|
||||
{
|
||||
// Find all XML files of the extension
|
||||
$files = JFolder::files($this->basedir, '.xml$', true, true);
|
||||
$files = JFolder::files($this->basedir, '\.xml$', true, true);
|
||||
|
||||
// Find XML package file
|
||||
$packageFile = $this->checkPackageXML($files);
|
||||
|
@ -45,7 +45,7 @@ class JedcheckerViewUploads extends JViewLegacy
|
||||
public function getRules()
|
||||
{
|
||||
$rules = array();
|
||||
$files = JFolder::files(JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules', '.php$', false, false);
|
||||
$files = JFolder::files(JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules', '\.php$', false, false);
|
||||
JLoader::discover('jedcheckerRules', JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules/');
|
||||
|
||||
foreach ($files as $file)
|
||||
@ -93,7 +93,7 @@ class JedcheckerViewUploads extends JViewLegacy
|
||||
|
||||
if (JFolder::exists($path))
|
||||
{
|
||||
if (JFolder::folders($path, '.', false) || JFolder::files($path, '.', false))
|
||||
if (JFolder::folders($path) || JFolder::files($path))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user