summaryrefslogtreecommitdiff
path: root/includes/utility.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/utility.inc')
-rw-r--r--includes/utility.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/utility.inc b/includes/utility.inc
index 438389d12..8bd78904f 100644
--- a/includes/utility.inc
+++ b/includes/utility.inc
@@ -31,10 +31,10 @@ function drupal_var_export($var, $prefix = '') {
$output .= ')';
}
}
- else if (is_bool($var)) {
+ elseif (is_bool($var)) {
$output = $var ? 'TRUE' : 'FALSE';
}
- else if (is_string($var)) {
+ elseif (is_string($var)) {
$line_safe_var = str_replace("\n", '\n', $var);
if (strpos($var, "\n") !== FALSE || strpos($var, "'") !== FALSE) {
// If the string contains a line break or a single quote, use the