15 lines
		
	
	
		
			376 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			376 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 | |
| # All rights reserved.  See LICENSE file for licensing details
 | |
| 
 | |
| if (!defined('S9Y_FRAMEWORK')) {
 | |
|     require 'serendipity_config.inc.php';
 | |
| }
 | |
| 
 | |
| $data = array();
 | |
| serendipity_plugin_api::hook_event('frontend_xmlrpc', $data);
 | |
| 
 | |
| if (count($data) == 0) {
 | |
|     die(XMLRPC_NO_LONGER_BUNDLED);
 | |
| }
 |