summaryrefslogtreecommitdiff
path: root/plugins/ClientSideShorten/ClientSideShortenPlugin.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-05-03 21:25:10 -0400
committerCraig Andrews <candrews@integralblue.com>2010-05-03 21:25:10 -0400
commitecf9dc6d1b5a068b2e5ba23debf2b7bec04d3d2c (patch)
treec411019ea517338ce51c6083fdf173976fa5ecf8 /plugins/ClientSideShorten/ClientSideShortenPlugin.php
parent8c0f119724dc22518fd54d6b25c775ceefd7281e (diff)
use the new maxNoticeLength and maxUrlLength functionality introduced in commit 14adb7cc41e3d5d4e543c1f13f7a60d3cadb5c71
Diffstat (limited to 'plugins/ClientSideShorten/ClientSideShortenPlugin.php')
-rw-r--r--plugins/ClientSideShorten/ClientSideShortenPlugin.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/ClientSideShorten/ClientSideShortenPlugin.php b/plugins/ClientSideShorten/ClientSideShortenPlugin.php
index ba1f7d3a7..454bedb08 100644
--- a/plugins/ClientSideShorten/ClientSideShortenPlugin.php
+++ b/plugins/ClientSideShorten/ClientSideShortenPlugin.php
@@ -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');
}
}