aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/languages.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-28 18:42:39 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-28 18:42:39 +0000
commit0fe3f48d86e643dacec6660ff98523c281809382 (patch)
tree1e82160938e51d7e4de453014af0e6f36c550f43 /engine/lib/languages.php
parent547a686381738fcb93a16894a331d96cdfba6f82 (diff)
downloadelgg-0fe3f48d86e643dacec6660ff98523c281809382.tar.gz
elgg-0fe3f48d86e643dacec6660ff98523c281809382.tar.bz2
Closes #313, Fixes #274: Resolved strange OSX language file browsing, including speculative windows fix. Thanks for the patch!
git-svn-id: https://code.elgg.org/elgg/trunk@2044 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 5292b5403..1e2714d77 100644
--- a/engine/lib/languages.php
+++ b/engine/lib/languages.php
@@ -86,7 +86,7 @@
if ($handle = opendir($path)) {
while ($language = readdir($handle)) {
- if (!in_array($language,array('.','..','.svn','CVS')) && !is_dir($path . $language)) {
+ if (!in_array($language,array('.','..','.svn','CVS', '.DS_Store', 'Thumbs.db',)) && !is_dir($path . $language)) {
@include($path . $language);
}
}