Changeset 16084 for trunk/include


Ignore:
Timestamp:
Jun 27, 2012, 9:02:26 AM (12 years ago)
Author:
plg
Message:

merge r16083 from branch 2.4 to trunk

tabulation is not the expected indentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/ws_protocols/rest_encoder.php

    r16074 r16084  
    6060    $this->_indentLevel++;
    6161    $this->_indent();
    62                 $diff = ord($name[0])-ord('0');
    63                 if ($diff>=0 && $diff<=9)
    64                 {
    65                         $name='_'.$name;
    66                 }
     62    $diff = ord($name[0])-ord('0');
     63    if ($diff>=0 && $diff<=9)
     64    {
     65      $name='_'.$name;
     66    }
    6767    $this->_output( '<'.$name );
    6868    $this->_lastTagOpen = true;
Note: See TracChangeset for help on using the changeset viewer.