Merging in a couple more revisions from stable
authorDan
Sun, 02 Dec 2007 16:00:56 -0500
changeset 310 199b9708f4a2
parent 304 e2cb5f1432c8 (current diff)
parent 309 a1ccf990db6b (diff)
child 313 854eecfada20
Merging in a couple more revisions from stable
index.php
upgrade.php
--- a/.hgtags	Sun Dec 02 16:00:10 2007 -0500
+++ b/.hgtags	Sun Dec 02 16:00:56 2007 -0500
@@ -8,4 +8,4 @@
 d53cc29308f4f4b97fc6d054e9e0855f37137409 rebrand
 90632c09ed7ec816da708df1341d9f4019de9adf feature-freeze
 f948557af0681389165a23419968965fcebcbdd0 devel-freeze
-c36c5034a80052b4dc4710a67513b5b6e3c2fc7b release
+95dc632bf0846b5a7d7d841a4fe9518964a1cc9a release
--- a/includes/wikiengine/Tables.php	Sun Dec 02 16:00:10 2007 -0500
+++ b/includes/wikiengine/Tables.php	Sun Dec 02 16:00:56 2007 -0500
@@ -277,6 +277,13 @@
 	 * @return HTML-encoded text fragment
 	 */
 	function encodeAttribute( $text ) {
+    
+    // In Enano 1.0.3, added this cheapo hack to keep ampersands
+    // from being double-sanitized. Thanks to markybob from #deluge.
+    $encValue = strtr( $text, array(
+      '&' => '&'
+    ) );
+    
 		$encValue = htmlspecialchars( $text );
 		
 		// Whitespace is normalized during attribute decoding,
--- a/index.php	Sun Dec 02 16:00:10 2007 -0500
+++ b/index.php	Sun Dec 02 16:00:56 2007 -0500
@@ -50,7 +50,10 @@
   
   global $db, $session, $paths, $template, $plugins; // Common objects
   
-  if(!isset($_GET['do'])) $_GET['do'] = 'view';
+  if ( !isset($_GET['do']) )
+  {
+    $_GET['do'] = 'view';
+  }
   switch($_GET['do'])
   {
     default:
--- a/upgrade.php	Sun Dec 02 16:00:10 2007 -0500
+++ b/upgrade.php	Sun Dec 02 16:00:56 2007 -0500
@@ -121,6 +121,7 @@
 require(ENANO_ROOT.'/includes/plugins.php');
 require(ENANO_ROOT.'/includes/rijndael.php');
 require(ENANO_ROOT.'/includes/render.php');
+require(ENANO_ROOT.'/includes/search.php');
 $db = new mysql();
 $db->connect();