--- provision_drupal_htaccess.tpl.php.old	2010-03-05 12:03:08.000000000 -0500
+++ provision_drupal_htaccess.tpl.php	2010-03-05 12:03:41.000000000 -0500
@@ -89,3 +89,6 @@
   RewriteCond %{REQUEST_URI} !=/favicon.ico
   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
 </IfModule>
+
+# Do not read the platform's .htaccess
+AllowOverride none
--- verify.provision.inc.old	2010-03-05 12:00:31.000000000 -0500
+++ verify.provision.inc	2010-03-05 12:06:07.000000000 -0500
@@ -70,23 +70,14 @@
 }
 
 /**
- * Inject the relevant .htacces configuration into the global apache
- * configuration
- *
- * This basically loads the regular .htacess but adds an AllowOverride
- * none so the .htaccess are ignored, as a performance improvement.
+ * Ensure that there is a newline at the end of the configuration file.
  *
  * @see platform/provision_drupal_htaccess.tpl.php
  * @see hook_provision_apache_dir_config()
  */
 function provision_drupal_provision_apache_dir_config($data = null) {
   $htaccess = file_get_contents(dirname(__FILE__) . "/provision_drupal_htaccess.tpl.php");
-  $htaccess .= <<<EOF
-
-# Do not read the platform's .htaccess
-AllowOverride none
+  $htaccess .= "\n";
 
-EOF;
-  # the trailing newline above is necessary
   return $htaccess;
 }
