Author: chabotc
Date: Mon Jun 16 06:53:26 2008
New Revision: 668161

URL: http://svn.apache.org/viewvc?rev=668161&view=rev
Log:
SHINDIG-386, sortOrder and filterType should be declared static

Modified:
    incubator/shindig/trunk/php/src/socialrest/opensocial/PeopleService.php

Modified: 
incubator/shindig/trunk/php/src/socialrest/opensocial/PeopleService.php
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/socialrest/opensocial/PeopleService.php?rev=668161&r1=668160&r2=668161&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/socialrest/opensocial/PeopleService.php 
(original)
+++ incubator/shindig/trunk/php/src/socialrest/opensocial/PeopleService.php Mon 
Jun 16 06:53:26 2008
@@ -18,8 +18,8 @@
  */
 
 abstract class PeopleService {
-       public $sortOrder = array('topFriends', 'name');
-       public $filterType = array('all', 'hasApp', 'topFriends');
+       static public $sortOrder = array('topFriends', 'name');
+       static public $filterType = array('all', 'hasApp', 'topFriends');
 
        /**
         * Returns a Person object for person with $id or false on not found


Reply via email to