Changeset 2028 for sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications-http-server.php
- Timestamp:
- 11/02/2015 05:34:45 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-notifications-http-server.php
r2027 r2028 16 16 function serve( $method, $secret, $arguments ) { 17 17 if ( ! method_exists( 'Trac_Notifications_DB', $method ) || $method[0] === '_' ) { 18 exit ( 'null' );18 exit; 19 19 } 20 20 21 21 if ( $secret !== $this->secret ) { 22 exit ( 'null' );22 exit; 23 23 } 24 24 … … 30 30 31 31 echo json_encode( $result ); 32 die;32 exit; 33 33 } 34 34 }
Note: See TracChangeset
for help on using the changeset viewer.