--- a/web/lib/Zend/Gdata/Gapps/GroupQuery.php Thu Mar 21 17:31:31 2013 +0100
+++ b/web/lib/Zend/Gdata/Gapps/GroupQuery.php Thu Mar 21 19:50:53 2013 +0100
@@ -16,7 +16,7 @@
* @category Zend
* @package Zend_Gdata
* @subpackage Gapps
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id:$
*/
@@ -37,7 +37,7 @@
* @category Zend
* @package Zend_Gdata
* @subpackage Gapps
- * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Gdata_Gapps_GroupQuery extends Zend_Gdata_Gapps_Query
@@ -55,7 +55,7 @@
* Create a new instance.
*
* @param string $domain (optional) The Google Apps-hosted domain to use
- * when constructing query URIs.
+ * when constructing query URIs.
* @param string $groupId (optional) Value for the groupId property.
* @param string $startGroupName (optional) Value for the
* startGroupName property.
@@ -210,15 +210,15 @@
$uri = Zend_Gdata_Gapps::APPS_BASE_FEED_URI;
$uri .= Zend_Gdata_Gapps::APPS_GROUP_PATH;
$uri .= '/' . $this->_domain;
-
+
if ($this->_groupId !== null) {
$uri .= '/' . $this->_groupId;
}
-
+
if(array_key_exists('member', $this->_params)) {
$uri .= '/';
}
-
+
$uri .= $this->getQueryString();
return $uri;
}