diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-11 20:16:36 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-11 20:16:36 +0100 |
commit | 3a99db9d49915521e8b7cbcdf84283f31bffd27b (patch) | |
tree | ce799706e51c590f43894981d249c02602b167d3 /user_guide_src | |
parent | d56ecf59c10e801814ace09f72285ee4dd1c63cb (diff) | |
parent | d8bef8a878238c6974f01758469af1c13ac8b8d7 (diff) |
Merge pull request #2872 from darwinel/develop
Writing style fix based on style guide
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/general/creating_libraries.rst | 3 | ||||
-rw-r--r-- | user_guide_src/source/libraries/xmlrpc.rst | 14 |
2 files changed, 9 insertions, 8 deletions
diff --git a/user_guide_src/source/general/creating_libraries.rst b/user_guide_src/source/general/creating_libraries.rst index 4beb600da..a1e1b3e78 100644 --- a/user_guide_src/source/general/creating_libraries.rst +++ b/user_guide_src/source/general/creating_libraries.rst @@ -44,7 +44,8 @@ The Class File Classes should have this basic prototype:: - <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); + <?php + defined('BASEPATH') OR exit('No direct script access allowed'); class Someclass { diff --git a/user_guide_src/source/libraries/xmlrpc.rst b/user_guide_src/source/libraries/xmlrpc.rst index 2cf548750..115b4e680 100644 --- a/user_guide_src/source/libraries/xmlrpc.rst +++ b/user_guide_src/source/libraries/xmlrpc.rst @@ -223,17 +223,17 @@ email address, etc.). Here is how the processing function might look:: $parameters = $request->output_parameters(); - if ($parameters['1'] != $username AND $parameters['2'] != $password) + if ($parameters['1'] != $username && $parameters['2'] != $password) { return $this->xmlrpc->send_error_message('100', 'Invalid Access'); } - $response = array(array('nickname' => array('Smitty','string'), - 'userid' => array('99','string'), - 'url' => array('http://yoursite.com','string'), - 'email' => array('jsmith@yoursite.com','string'), - 'lastname' => array('Smith','string'), - 'firstname' => array('John','string') + $response = array(array('nickname' => array('Smitty', 'string'), + 'userid' => array('99', 'string'), + 'url' => array('http://yoursite.com', 'string'), + 'email' => array('jsmith@yoursite.com', 'string'), + 'lastname' => array('Smith', 'string'), + 'firstname' => array('John', 'string') ), 'struct'); |