Changeset 5513
- Timestamp:
- 03/03/08 00:49:09 (10 months ago)
- Files:
-
- 1 modified
-
trunk/interface/owner/data/export/index.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/data/export/index.php
r5285 r5513 221 221 if ($log->open()) { 222 222 $writer->write('<logs>'); 223 $writer->write(CRLF); 223 224 do { 224 225 $writer->write('<referer>' . '<url>' . htmlspecialchars(UTF8::correct($log->url)) . '</url>' . '<referred>' . $log->referred . '</referred>' . '</referer>'); 226 $writer->write(CRLF); 225 227 } while ($log->shift()); 226 228 $writer->write('</logs>'); 229 $writer->write(CRLF); 227 230 $log->close(); 228 231 } … … 232 235 if ($cmtNotified->open()) { 233 236 $writer->write('<commentsNotified>'); 237 $writer->write(CRLF); 234 238 do { 235 239 $writer->write('<comment>'); … … 258 262 $writer->write('<entryUrl>' . htmlspecialchars(UTF8::correct($cmtNotified->entryUrl)). '</entryUrl>'); 259 263 $writer->write('</comment>'); 264 $writer->write(CRLF); 260 265 } while ($cmtNotified->shift()); 261 266 $writer->write('</commentsNotified>'); 267 $writer->write(CRLF); 262 268 $cmtNotified->close(); 263 269 } … … 276 282 } while ($cmtNotifiedSite->shift()); 277 283 $writer->write('</commentsNotifiedSiteInfo>'); 284 $writer->write(CRLF); 278 285 $cmtNotifiedSite->close(); 279 286 } … … 286 293 } while ($statistics->shift()); 287 294 $writer->write('</statistics>'); 295 $writer->write(CRLF); 288 296 $statistics->close(); 289 297 } … … 301 309 } while ($statistics->shift()); 302 310 $writer->write('</statistics>'); 311 $writer->write(CRLF); 303 312 $statistics->close(); 304 313 } … … 341 350 } while ($comment->shift()); 342 351 $writer->write('</guestbook>'); 352 $writer->write(CRLF); 343 353 $comment->close(); 344 354 }
