aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/languages.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 14:33:35 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-02-19 14:33:35 +0000
commit9901e028b08dde22c8eb77c20d14de0eb95bdf90 (patch)
treee747015966a51e21099d1486f30eaeb123aa3da1 /engine/lib/languages.php
parent639b998d482242b3f72c0616f6c8ae285cd72085 (diff)
downloadelgg-9901e028b08dde22c8eb77c20d14de0eb95bdf90.tar.gz
elgg-9901e028b08dde22c8eb77c20d14de0eb95bdf90.tar.bz2
Removed @ from register translation include_once
git-svn-id: https://code.elgg.org/elgg/trunk@2812 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/languages.php')
-rw-r--r--engine/lib/languages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/languages.php b/engine/lib/languages.php
index d40953ee0..664285996 100644
--- a/engine/lib/languages.php
+++ b/engine/lib/languages.php
@@ -139,7 +139,7 @@
((in_array($language, array('en.php', $current_language . '.php'))) && (!is_dir($path . $language))) ||
(($load_all) && (strpos($language, '.php')!==false) && (!is_dir($path . $language)))
)
- @include_once($path . $language);
+ include_once($path . $language);
}
}