Changeset 396382
- Timestamp:
- 06/13/2011 01:01:48 AM (15 years ago)
- Location:
- url-shortener/trunk
- Files:
-
- 6 edited
-
components/jz_shortener/jzsc.complex.php (modified) (1 diff)
-
components/jz_shortener/jzsc.googl.php (modified) (1 diff)
-
components/jz_shortener/jzsc.simple.php (modified) (1 diff)
-
components/jz_shortener/jzsc.yourls.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
url-shortener.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
url-shortener/trunk/components/jz_shortener/jzsc.complex.php
r396271 r396382 240 240 241 241 public function set_service($service){ 242 parent: set_service($service, $this->api_config[$service]);242 parent::set_service($service, $this->api_config[$service]); 243 243 } 244 244 -
url-shortener/trunk/components/jz_shortener/jzsc.googl.php
r396271 r396382 110 110 */ 111 111 public function set_service($service){ 112 parent: set_service('googl', $this->api_config['googl']);112 parent::set_service('googl', $this->api_config['googl']); 113 113 } 114 114 -
url-shortener/trunk/components/jz_shortener/jzsc.simple.php
r396271 r396382 209 209 */ 210 210 public function set_service($service){ 211 parent: set_service($service, $this->api_config[$service]);211 parent::set_service($service, $this->api_config[$service]); 212 212 } 213 213 -
url-shortener/trunk/components/jz_shortener/jzsc.yourls.php
r396271 r396382 107 107 */ 108 108 public function set_service($service){ 109 parent: set_service('yourls', $this->api_config['yourls']);109 parent::set_service('yourls', $this->api_config['yourls']); 110 110 } 111 111 -
url-shortener/trunk/readme.txt
r396286 r396382 173 173 174 174 175 = 4.0.1 = 176 * *BUGFIX* missed out colon in parent declaration in component files 177 178 175 179 = 4.0 = 176 180 * Code refactoring (Shortening portion completely rewritten) -
url-shortener/trunk/url-shortener.php
r396271 r396382 6 6 Author: Gerald Yeo 7 7 Author URI: http://www.fusedthought.com 8 Version: 4.0 8 Version: 4.0.1 9 9 */ 10 10
Note: See TracChangeset
for help on using the changeset viewer.