This commit is contained in:
Christian Wiwie 2020-03-14 22:29:11 +01:00
parent b46a23eab3
commit 0ea84cfb66
2 changed files with 3 additions and 2 deletions

View file

@ -71,5 +71,6 @@ function showmore_dyn_settings(&$a,&$o) {
function showmore_dyn_script() {
$limitHeight = DI::pConfig()->get(local_user(), 'showmore_dyn', 'limitHeight' );
DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . ';</script>';
$showmore_dyn_showmore_linktext = DI::l10n()->t('Show more ...');
DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . '; var showmore_dyn_showmore_linktext = "' . $showmore_dyn_showmore_linktext . '"</script>';
}