diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-08-07 16:24:48 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-08-07 16:24:48 +0200 |
| commit | 9925733350efe98007b08f88a36e9138908129d9 (patch) | |
| tree | 54fdc61731dd6b2e319c7b5b7c8c08271f0bb3e8 /phpBB/phpbb/cache | |
| parent | 9a0451889cf91c7e6563d8e12108630ee5d1f130 (diff) | |
| parent | a2b6f4e1665495f1dbabfa284f097a8cda122dcb (diff) | |
| download | forums-9925733350efe98007b08f88a36e9138908129d9.tar forums-9925733350efe98007b08f88a36e9138908129d9.tar.gz forums-9925733350efe98007b08f88a36e9138908129d9.tar.bz2 forums-9925733350efe98007b08f88a36e9138908129d9.tar.xz forums-9925733350efe98007b08f88a36e9138908129d9.zip | |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[ticket/12826] Add optional root namespace indicator for consistency.
[ticket/12826] Add mandatory root namespace indicator to exception catching.
Diffstat (limited to 'phpBB/phpbb/cache')
| -rw-r--r-- | phpBB/phpbb/cache/driver/file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/cache/driver/file.php b/phpBB/phpbb/cache/driver/file.php index fbd3b571f7..03e868e289 100644 --- a/phpBB/phpbb/cache/driver/file.php +++ b/phpBB/phpbb/cache/driver/file.php @@ -208,7 +208,7 @@ class file extends \phpbb\cache\driver\base { $iterator = new \DirectoryIterator($this->cache_dir); } - catch (Exception $e) + catch (\Exception $e) { return; } @@ -259,7 +259,7 @@ class file extends \phpbb\cache\driver\base { $iterator = new \DirectoryIterator($dir); } - catch (Exception $e) + catch (\Exception $e) { return; } |
