use the new maxNoticeLength and maxUrlLength functionality introduced in commit 14adb7cc41

This commit is contained in:
Craig Andrews
2010-05-03 21:25:10 -04:00
parent 8c0f119724
commit ecf9dc6d1b
2 changed files with 16 additions and 3 deletions

View File

@@ -51,8 +51,10 @@ class ClientSideShortenPlugin extends Plugin
}
function onEndShowScripts($action){
$action->inlineScript('var Notice_maxContent = ' . Notice::maxContent());
if (common_logged_in()) {
$user = common_current_user();
$action->inlineScript('var maxNoticeLength = ' . User_urlshortener_prefs::maxNoticeLength($user));
$action->inlineScript('var maxUrlLength = ' . User_urlshortener_prefs::maxUrlLength($user));
$action->script('plugins/ClientSideShorten/shorten.js');
}
}