------------------------------------------------------------
revno: 1003
committer: bassel <[email protected]>
branch nick: aikiframework
timestamp: Fri 2012-01-06 14:32:19 +0200
message:
  added stripslaches for the final output as security feature for mac users on 
MAMP since it always add slashes on input regardless of php settings
modified:
  index.php


--
lp:aikiframework
https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk

Your team Aiki Framework Developers is subscribed to branch lp:aikiframework.
To unsubscribe from this branch go to 
https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk/+edit-subscription
=== modified file 'index.php'
--- index.php	2011-12-27 12:26:35 +0000
+++ index.php	2012-01-06 12:32:19 +0000
@@ -106,7 +106,8 @@
 	}
 
 	if (!isset($_GET['no_output']))  {
-		$aiki->Plugins->doAction("output_html", $html_output);   
+		$aiki->Plugins->doAction("output_html", $html_output);
+		$html_output = stripslashes($html_output);   
 		print $html_output;
 	}
 } // end of using tidy

_______________________________________________
Mailing list: https://launchpad.net/~aikiframework-devel
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework-devel
More help   : https://help.launchpad.net/ListHelp

Reply via email to