diff options
author | nashe <contact@nashe.fr> | 2015-08-11 12:04:53 +0200 |
---|---|---|
committer | nashe <contact@nashe.fr> | 2015-08-11 12:04:53 +0200 |
commit | b84b865d45b00600d982fef18991398cb655c7e9 (patch) | |
tree | 5f3d0432facd74395d029c480bb79d9e0669eb01 /app/l10n | |
parent | f2788a4ed2eae7f0056ab200b8fc787ed20a32da (diff) | |
download | planet-b84b865d45b00600d982fef18991398cb655c7e9.tar planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.gz planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.bz2 planet-b84b865d45b00600d982fef18991398cb655c7e9.tar.xz planet-b84b865d45b00600d982fef18991398cb655c7e9.zip |
Clean code
Replace dirname(__FILE__) by __DIR__.
Diffstat (limited to 'app/l10n')
-rwxr-xr-x | app/l10n/extract.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/l10n/extract.php b/app/l10n/extract.php index 3f1ef33..878de4e 100755 --- a/app/l10n/extract.php +++ b/app/l10n/extract.php @@ -16,7 +16,7 @@ // released versions of moonmoon should immediately return for security // return; -$root = dirname(__FILE__) . '/../../'; +$root = __DIR__ . '/../../'; require_once $root.'/vendors/autoload.php'; |