Skip to content

Commit

Permalink
bf
Browse files Browse the repository at this point in the history
  • Loading branch information
uprel committed Jun 4, 2019
1 parent d7da332 commit b2311b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/eqwc_load.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
$plugin_path = $dir . $item;

//plugin language file
$lang_fn = $dir . basename($plugin_path) . "/lang/" . $def_lang . ".js?v=" . rand();
$lang_fn = $dir . basename($plugin_path) . "/lang/" . $def_lang . ".js";
if (!file_exists($lang_fn)) {
$def_lang = 'en';
}
Expand Down
2 changes: 1 addition & 1 deletion client_mobile/eqwc_mobile_load.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
$plugin_path = $dir . $item;

//plugin language file
$lang_fn = $dir . basename($plugin_path) . "/lang_mobile/" . $def_lang . ".js?v=" . rand();
$lang_fn = $dir . basename($plugin_path) . "/lang_mobile/" . $def_lang . ".js";
if (!file_exists($lang_fn)) {
$def_lang = 'en';
}
Expand Down

0 comments on commit b2311b1

Please sign in to comment.