Changeset 396423
- Timestamp:
- 06/13/2011 04:28:07 AM (15 years ago)
- Location:
- url-shortener/trunk
- Files:
-
- 1 deleted
- 4 edited
-
components/jz_shortener/jzsc.complex.php (modified) (2 diffs)
-
components/jz_shortener/jzsc.googl.php (modified) (2 diffs)
-
components/jz_shortener/jzsc.simple.php (modified) (2 diffs)
-
components/jz_shortener/jzsc.yourls.php (modified) (2 diffs)
-
uninstall.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
url-shortener/trunk/components/jz_shortener/jzsc.complex.php
r396382 r396423 29 29 ***************************************** 30 30 */ 31 32 if ( !interface_exists('jzsc_interface') ) :33 include( dirname(__FILE__) . '/lib/jzsc.interface.php' );34 endif;35 36 37 31 if ( !class_exists('jzsc_shared') ) : 38 32 include( dirname(__FILE__) . '/lib/jzsc.shared.php' ); … … 52 46 53 47 if ( !class_exists('jzsc_complex') ) : 54 class jzsc_complex extends jzsc_shared implements jzsc_interface{48 class jzsc_complex extends jzsc_shared { 55 49 56 50 -
url-shortener/trunk/components/jz_shortener/jzsc.googl.php
r396382 r396423 21 21 ***************************************** 22 22 */ 23 if ( !interface_exists('jzsc_interface') ) :24 include( dirname(__FILE__) . '/lib/jzsc.interface.php' );25 endif;26 27 23 if ( !class_exists('jzsc_shared') ) : 28 24 include( dirname(__FILE__) . '/lib/jzsc.shared.php' ); … … 42 38 43 39 if ( !class_exists('jzsc_googl') ) : 44 class jzsc_googl extends jzsc_shared implements jzsc_interface{40 class jzsc_googl extends jzsc_shared{ 45 41 46 42 -
url-shortener/trunk/components/jz_shortener/jzsc.simple.php
r396382 r396423 30 30 ***************************************** 31 31 */ 32 if ( !interface_exists('jzsc_interface') ) :33 include( dirname(__FILE__) . '/lib/jzsc.interface.php' );34 endif;35 36 32 if ( !class_exists('jzsc_shared') ) : 37 33 include( dirname(__FILE__) . '/lib/jzsc.shared.php' ); … … 51 47 52 48 if ( !class_exists('jzsc_simple') ) : 53 class jzsc_simple extends jzsc_shared implements jzsc_interface{49 class jzsc_simple extends jzsc_shared{ 54 50 55 51 -
url-shortener/trunk/components/jz_shortener/jzsc.yourls.php
r396382 r396423 21 21 ***************************************** 22 22 */ 23 if ( !interface_exists('jzsc_interface') ) :24 include( dirname(__FILE__) . '/lib/jzsc.interface.php' );25 endif;26 27 23 if ( !class_exists('jzsc_shared') ) : 28 24 include( dirname(__FILE__) . '/lib/jzsc.shared.php' ); … … 42 38 43 39 if ( !class_exists('jzsc_yourls') ) : 44 class jzsc_yourls extends jzsc_shared implements jzsc_interface{40 class jzsc_yourls extends jzsc_shared{ 45 41 46 42
Note: See TracChangeset
for help on using the changeset viewer.