1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Fixes #3925 - PM menu title setting is now respected

Co-Authored-By: Jimako <jimmi08@users.noreply.github.com>
This commit is contained in:
Tijn Kuyper
2019-08-27 13:36:46 +02:00
parent eccc74dd1b
commit 1e930ed273

View File

@@ -154,5 +154,9 @@ if(!isset($template))
$txt .= pm_show_popup($pm_inbox, $pm_prefs['popup_delay']);
}
$ns->tablerender(LAN_PM, $txt, 'pm');
}
//$ns->tablerender(LAN_PM, $txt, 'pm');
$caption = varset($pm_prefs['title'], LAN_PM);
$ns->tablerender($caption, $txt, 'pm');
}