From 666cc92186f57e6377b2fc46a2ff411e3c87c22b Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Tue, 01 Mar 2016 18:25:57 -0500 Subject: remove minification on all pages --- (limited to 'site') diff --git a/site/common/functions.php b/site/common/functions.php index e0cda47..9f01772 100644 --- a/site/common/functions.php +++ b/site/common/functions.php @@ -21,16 +21,17 @@ /* Minified HTML output (note: needs work for
 tags) */
 	function miniHtml($strHtml) {
-		return $strHtml = preg_replace(
+        return $strHtml;
+	/*	return $strHtml = preg_replace(
 			array("/\r|\n/", "/(\s)+/s", "/\>[^\S ]+/s", "/[^\S ]+\", "<"),
 			$strHtml
-		);
+		); */
 	}
 
 	/* Minified CSS output */
 	function miniCss($strCss) {
-		return preg_replace("/\r|\n/", "", $strCss);
+		return $strCss; // preg_replace("/\r|\n/", "", $strCss);
 	}
 
 	/* Generic function for showing a list of URLs */
--
cgit v0.9.1