Changeset 16083


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

tabulation is not the expected indentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/include/ws_protocols/rest_encoder.php

    r16075 r16083  
    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.