Changeset 487419
- Timestamp:
- 01/10/2012 09:45:14 AM (14 years ago)
- Location:
- google-identity-toolkit/trunk/git
- Files:
-
- 3 edited
-
config/config.php (modified) (1 diff)
-
util/gitApiClient.php (modified) (1 diff)
-
util/gitConfig.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
google-identity-toolkit/trunk/git/config/config.php
r470071 r487419 24 24 25 25 'customer_id' => 'customer_id', 26 'idpAssertionKey'=>'idpAssertion' 26 'idpAssertionKey'=>'idpAssertion', 27 'pluginName' => 'wp', 27 28 ); 28 29 -
google-identity-toolkit/trunk/git/util/gitApiClient.php
r470071 r487419 50 50 $request['requestUri'] = $url; 51 51 $request['postBody'] = $postBody; 52 $request['p'] = GitContext::getConfig()->getPluginName(); 52 53 53 54 $response = $this->post($request); -
google-identity-toolkit/trunk/git/util/gitConfig.php
r470071 r487419 70 70 return $this->get('sessionManager'); 71 71 } 72 73 public function getPluginName(){ 74 return $this->get('pluginName'); 75 } 76 77 public function setPluginName($value){ 78 return $this->get('pluginName', $value); 79 } 72 80 }
Note: See TracChangeset
for help on using the changeset viewer.