Avoid including temporary files like the ones created by vi or emacs
This commit is contained in:
parent
f97a652485
commit
a6cc048940
1 changed files with 4 additions and 1 deletions
|
@ -73,7 +73,10 @@ spl_autoload_register('autoload');
|
||||||
$models = new DirectoryIterator(dirname(__FILE__) . '/../models/');
|
$models = new DirectoryIterator(dirname(__FILE__) . '/../models/');
|
||||||
foreach($models as $key => $file) {
|
foreach($models as $key => $file) {
|
||||||
if ($file->isFile() && ! $file->isDot()) {
|
if ($file->isFile() && ! $file->isDot()) {
|
||||||
require_once $file->getPathname();
|
$e = explode('.', $file->getFileName());
|
||||||
|
if (end($e) === 'php') {
|
||||||
|
require_once $file->getPathname();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//require_once dirname(__FILE__) . '/../models/location.php';
|
//require_once dirname(__FILE__) . '/../models/location.php';
|
||||||
|
|
Loading…
Add table
Reference in a new issue