Improve URL cleaning:

* also remove action_type_map, action_ref_map and action_object maps params used by facebook
This commit is contained in:
nodiscc 2015-03-05 13:40:43 +01:00
parent 403a199409
commit baf5cbf27d
1 changed files with 1 additions and 1 deletions

View File

@ -1644,7 +1644,7 @@ function renderPage()
// We remove the annoying parameters added by FeedBurner, GoogleFeedProxy, Facebook...
$annoyingpatterns = array('/[\?&]utm_source=[^&]*/', '/[\?&]utm_campaign=[^&]*/', '/[\?&]utm_medium=[^&]*/', '/#xtor=RSS-[^&]*/', '/[\?&]fb_[^&]*/', '/[\?&]__scoop[^&]*/', '/#tk\.rss_all\?/');
$annoyingpatterns = array('/[\?&]utm_source=[^&]*/', '/[\?&]utm_campaign=[^&]*/', '/[\?&]utm_medium=[^&]*/', '/#xtor=RSS-[^&]*/', '/[\?&]fb_[^&]*/', '/[\?&]__scoop[^&]*/', '/#tk\.rss_all\?/', '/[\?&]action_ref_map=[^&]*/', '/[\?&]action_type_map=[^&]*/', '/[\?&]action_object_map=[^&]*/');
foreach($annoyingpatterns as $pattern)
{
$url = preg_replace($pattern, "", $url);