]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/output/class_WebOutput.php
Added stripTags (default: false) to allow stripping out HTML tags
[core.git] / inc / classes / main / output / class_WebOutput.php
index 9b1223c675d9ace13af24c0ad19cca944469a86c..92110f09bc3c35191351d5e1b24103f64960111a 100644 (file)
@@ -67,9 +67,11 @@ class WebOutput extends BaseFrameworkSystem implements OutputStreamer, Registera
        /**
         * Output the code
         *
+        * @param       $outStream      Stream to output
+        * @param       $stripTags      Whether HTML tags shall be stripped out
         * @return      void
         */
-       public final function output ($outStream = false) {
+       public final function output ($outStream = false, $stripTags = false) {
                print(stripslashes($outStream));
        }
 }