diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-08-12 18:00:11 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-08-12 18:00:11 +0000 |
commit | 0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf (patch) | |
tree | b96ef3d826688f6669eb9d23b12db48947339f3c /xmlrpc.php | |
parent | c1ca7c326f574d83085fb052ea1f2d6249d3832e (diff) | |
download | brdo-0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf.tar.gz brdo-0f088b79ca2fefb4aa92b91cee1d32e162a3dfaf.tar.bz2 |
- Patch #9983 by Stefan: various code style improvements.
Diffstat (limited to 'xmlrpc.php')
-rw-r--r-- | xmlrpc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xmlrpc.php b/xmlrpc.php index a9fd0c9d7..7b52d5166 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -1,12 +1,12 @@ <?php // $Id$ -include_once "includes/bootstrap.inc"; -include_once "includes/common.inc"; +include_once 'includes/bootstrap.inc'; +include_once 'includes/common.inc'; include_once 'includes/xmlrpc.inc'; -include_once "includes/xmlrpcs.inc"; +include_once 'includes/xmlrpcs.inc'; -$functions = module_invoke_all("xmlrpc"); +$functions = module_invoke_all('xmlrpc'); $server = new xmlrpc_server($functions); |