You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/10/09 09:20:54 UTC

svn commit: r703084 - /incubator/shindig/trunk/php/src/common/UrlGenerator.php

Author: chabotc
Date: Thu Oct  9 00:20:54 2008
New Revision: 703084

URL: http://svn.apache.org/viewvc?rev=703084&view=rev
Log:
SHINDIG-573 by Janek Hiis, missing & in UrlGeberator

Modified:
    incubator/shindig/trunk/php/src/common/UrlGenerator.php

Modified: incubator/shindig/trunk/php/src/common/UrlGenerator.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/UrlGenerator.php?rev=703084&r1=703083&r2=703084&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/common/UrlGenerator.php (original)
+++ incubator/shindig/trunk/php/src/common/UrlGenerator.php Thu Oct  9 00:20:54 2008
@@ -45,6 +45,6 @@
 		}
 		
 		// note: put the URL last, else some browsers seem to get confused (reported by hi5)
-		return Config::get('default_iframe_prefix') . 'container=' . $context->getContainer() . ($context->getIgnoreCache() ? 'nocache=1' : '&v=' . $v) . ($context->getModuleId() != 0 ? '&mid=' . $context->getModuleId() : '') . '&lang=' . $context->getLocale()->getLanguage() . '&country=' . $context->getLocale()->getCountry() . '&view=' . $view->getName() . $up . '&url=' . urlencode($context->getUrl());
+		return Config::get('default_iframe_prefix') . 'container=' . $context->getContainer() . ($context->getIgnoreCache() ? '&nocache=1' : '&v=' . $v) . ($context->getModuleId() != 0 ? '&mid=' . $context->getModuleId() : '') . '&lang=' . $context->getLocale()->getLanguage() . '&country=' . $context->getLocale()->getCountry() . '&view=' . $view->getName() . $up . '&url=' . urlencode($context->getUrl());
 	}
 }