aboutsummaryrefslogtreecommitdiffstats
path: root/admin/popuphelp.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/popuphelp.php')
-rw-r--r--admin/popuphelp.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/admin/popuphelp.php b/admin/popuphelp.php
index 8c431c88b..7d0a0cf8b 100644
--- a/admin/popuphelp.php
+++ b/admin/popuphelp.php
@@ -47,16 +47,21 @@ if
and preg_match('/^[a-z_]*$/', $_GET['page'])
)
{
- $help_content =
- load_language('help/'.$_GET['page'].'.html', '', array('return'=>true) );
+ $help_content = load_language(
+ 'help/'.$_GET['page'].'.html',
+ '',
+ array(
+ 'force_fallback' => 'en_UK',
+ 'return' => true,
+ )
+ );
if ($help_content == false)
{
$help_content = '';
}
- $help_content = trigger_change(
- 'get_popup_help_content', $help_content, $_GET['page']);
+ $help_content = trigger_change('get_popup_help_content', $help_content, $_GET['page']);
}
else
{