From c99f6f6afcc2667467d0e1140f634bbc3bd4a7de Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 16 Mar 2011 10:26:14 -0400 Subject: [PATCH] remove a bunch of common_debug() calls for url shortening --- lib/util.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/util.php b/lib/util.php index 9f84e3120a..536fff4dec 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1031,19 +1031,13 @@ function common_linkify($url) { */ function common_shorten_links($text, $always = false, User $user=null) { - common_debug("common_shorten_links() called"); - $user = common_current_user(); $maxLength = User_urlshortener_prefs::maxNoticeLength($user); - common_debug("maxLength = $maxLength"); - if ($always || mb_strlen($text) > $maxLength) { - common_debug("Forcing shortening"); return common_replace_urls_callback($text, array('File_redirection', 'forceShort'), $user); } else { - common_debug("Not forcing shortening"); return common_replace_urls_callback($text, array('File_redirection', 'makeShort'), $user); } } @@ -2066,27 +2060,21 @@ function common_database_tablename($tablename) */ function common_shorten_url($long_url, User $user=null, $force = false) { - common_debug("Shortening URL '$long_url' (force = $force)"); - $long_url = trim($long_url); $user = common_current_user(); $maxUrlLength = User_urlshortener_prefs::maxUrlLength($user); - common_debug("maxUrlLength = $maxUrlLength"); // $force forces shortening even if it's not strictly needed // I doubt URL shortening is ever 'strictly' needed. - ESP if (mb_strlen($long_url) < $maxUrlLength && !$force) { - common_debug("Skipped shortening URL."); return $long_url; } $shortenerName = User_urlshortener_prefs::urlShorteningService($user); - common_debug("Shortener name = '$shortenerName'"); - if (Event::handle('StartShortenUrl', array($long_url, $shortenerName, &$shortenedUrl))) { if ($shortenerName == 'internal') { -- 2.39.5