aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-06-27 07:02:26 +0000
committerplegall <plg@piwigo.org>2012-06-27 07:02:26 +0000
commit5d6912c45c488c568f1fb8c7508c1859a16a3cdf (patch)
treeaafa9deefcfef9bbf193bc5a6738cb344666ab9f
parent32ecb677a90d4c651e0b8c385d2b1c5a91197f26 (diff)
merge r16083 from branch 2.4 to trunk
tabulation is not the expected indentation git-svn-id: http://piwigo.org/svn/trunk@16084 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/ws_protocols/rest_encoder.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ws_protocols/rest_encoder.php b/include/ws_protocols/rest_encoder.php
index 041540a3e..7b864e7ca 100644
--- a/include/ws_protocols/rest_encoder.php
+++ b/include/ws_protocols/rest_encoder.php
@@ -59,11 +59,11 @@ class PwgXmlWriter
}
$this->_indentLevel++;
$this->_indent();
- $diff = ord($name[0])-ord('0');
- if ($diff>=0 && $diff<=9)
- {
- $name='_'.$name;
- }
+ $diff = ord($name[0])-ord('0');
+ if ($diff>=0 && $diff<=9)
+ {
+ $name='_'.$name;
+ }
$this->_output( '<'.$name );
$this->_lastTagOpen = true;
array_push( $this->_elementStack, $name);