Skip to content

Commit afee226

Browse files
committed
Changed TRUE and FALSE values to be uppercase
1 parent 0875d69 commit afee226

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system/libraries/Migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ public function latest()
285285
if ( ! $migrations = $this->find_migrations())
286286
{
287287
$this->_error_string = $this->lang->line('migration_none_found');
288-
return false;
288+
return FALSE;
289289
}
290290

291291
$last_migration = basename(end($migrations));

system/libraries/Xmlrpcs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public function parseRequest($data = '')
230230
);
231231

232232
xml_set_object($parser, $parser_object);
233-
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, true);
233+
xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, TRUE);
234234
xml_set_element_handler($parser, 'open_tag', 'closing_tag');
235235
xml_set_character_data_handler($parser, 'character_data');
236236
//xml_set_default_handler($parser, 'default_handler');

0 commit comments

Comments
 (0)