Changeset 28587 for trunk/include/ws_core.inc.php
- Timestamp:
- Jun 2, 2014, 9:55:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/ws_core.inc.php
r26461 r28587 292 292 ); 293 293 294 trigger_ action('ws_add_methods', array(&$this) );294 trigger_notify('ws_add_methods', array(&$this) ); 295 295 uksort( $this->_methods, 'strnatcmp' ); 296 296 $this->_requestHandler->handleRequest($this); … … 307 307 @header('Content-Type: '.$contentType.'; charset='.get_pwg_charset()); 308 308 print_r($encodedResponse); 309 trigger_ action('sendResponse', $encodedResponse );309 trigger_notify('sendResponse', $encodedResponse ); 310 310 } 311 311 … … 599 599 } 600 600 601 $result = trigger_ event('ws_invoke_allowed', true, $methodName, $params);601 $result = trigger_change('ws_invoke_allowed', true, $methodName, $params); 602 602 if ( strtolower( @get_class($result) )!='pwgerror') 603 603 {
Note: See TracChangeset
for help on using the changeset viewer.