TODOs.txt updated :(
[mailer.git] / DOCS / tpl-validator.php
index deead7a895f5fddcc644c68d83e4716dab2de76b..d3e41e271511370ae13ea2631e5e8a4427e07fc8 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -48,23 +48,23 @@ if ($_SERVER['argc'] < 2) {
 print "Validating template ".$_SERVER['argv'][1]."...\n";
 
 $doc = new DOMDocument();
-$doc->formatOutput = true;
-$doc->preserveWhiteSpace = false;
+$doc->formatOutput = TRUE;
+$doc->preserveWhiteSpace = FALSE;
 $doc->encoding = 'UTF-8';
 $doc->xmlVersion = '1.1';
 $doc->loadHTMLFile($_SERVER['argv'][1]);
 
 $data = $doc->saveHTML();
 $newData = str_replace("<br>", "<br />\n", $data);
-$newData = str_replace("\n\n", "\n", $newData);
+$newData = str_replace(PHP_EOL . PHP_EOL, PHP_EOL, $newData);
 
-$array = explode("\n", $newData);
+$array = explode(PHP_EOL, $newData);
 array_shift($array);
 array_shift($array);
 unset($array[count($array) - 1]);
 unset($array[count($array) - 1]);
 
-$newData = implode("\n", $array)."\n";
+$newData = implode(PHP_EOL, $array).PHP_EOL;
 
 // Has a template changed?
 if ($data != $newData) {