Commit 0ff6e9db8455b7628a813a27746af4f9e4fdda5f
1 parent
be67b122
Exists in
master
and in
109 other branches
command name case sensitive
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
php/classes/AmdaStats.php
@@ -79,7 +79,7 @@ class AmdaStats { | @@ -79,7 +79,7 @@ class AmdaStats { | ||
79 | foreach ($users as $user) { | 79 | foreach ($users as $user) { |
80 | $name2 = $user."/Stats$year.xml"; | 80 | $name2 = $user."/Stats$year.xml"; |
81 | 81 | ||
82 | - if (!file_Exists($name2)) continue; | 82 | + if (!file_exists($name2)) continue; |
83 | 83 | ||
84 | $doc2->load($name2); | 84 | $doc2->load($name2); |
85 | 85 |