Changeset 5513

Show
Ignore:
Timestamp:
03/03/08 00:49:09 (10 months ago)
Author:
inureyes
Message:

#852

  • 개행을 적당히 하도록 수정합니다.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/owner/data/export/index.php

    r5285 r5513  
    221221if ($log->open()) { 
    222222    $writer->write('<logs>'); 
     223    $writer->write(CRLF); 
    223224    do { 
    224225        $writer->write('<referer>' . '<url>' . htmlspecialchars(UTF8::correct($log->url)) . '</url>' . '<referred>' . $log->referred . '</referred>' . '</referer>'); 
     226        $writer->write(CRLF); 
    225227    } while ($log->shift()); 
    226228    $writer->write('</logs>'); 
     229    $writer->write(CRLF); 
    227230    $log->close(); 
    228231} 
     
    232235if ($cmtNotified->open()) { 
    233236    $writer->write('<commentsNotified>'); 
     237    $writer->write(CRLF); 
    234238    do { 
    235239        $writer->write('<comment>'); 
     
    258262        $writer->write('<entryUrl>' . htmlspecialchars(UTF8::correct($cmtNotified->entryUrl)). '</entryUrl>'); 
    259263        $writer->write('</comment>'); 
     264        $writer->write(CRLF); 
    260265    } while ($cmtNotified->shift()); 
    261266    $writer->write('</commentsNotified>'); 
     267    $writer->write(CRLF); 
    262268    $cmtNotified->close(); 
    263269} 
     
    276282    } while ($cmtNotifiedSite->shift()); 
    277283    $writer->write('</commentsNotifiedSiteInfo>'); 
     284    $writer->write(CRLF); 
    278285    $cmtNotifiedSite->close(); 
    279286} 
     
    286293    } while ($statistics->shift()); 
    287294    $writer->write('</statistics>'); 
     295    $writer->write(CRLF); 
    288296    $statistics->close(); 
    289297} 
     
    301309    } while ($statistics->shift()); 
    302310    $writer->write('</statistics>'); 
     311    $writer->write(CRLF); 
    303312    $statistics->close(); 
    304313} 
     
    341350    } while ($comment->shift()); 
    342351    $writer->write('</guestbook>'); 
     352    $writer->write(CRLF); 
    343353    $comment->close(); 
    344354}