CVS update: /cowiki/htdocs/setup/, /cowiki/includes/cowiki/class/util/

[email protected] 26 May 2005 20:37:33 -0000
Newsgroups gmane.comp.php.cowiki.cvs
Message-ID <[email protected]>
User: dgorski 
Date: 2005/05/26 13:37:33

Modified:
   cowiki/htdocs/setup/installer.php
   cowiki/includes/cowiki/class/util/class.HttpRequest.php

Log:
 Typo

File Changes:

Directory: /cowiki/htdocs/setup/
================================

File [changed]: installer.php
Url: http://cowiki.tigris.org/source/browse/cowiki/htdocs/setup/installer.php?r1=1.5&r2=1.6
Delta lines:  +3 -3
-------------------
--- installer.php	24 May 2005 14:44:57 -0000	1.5
+++ installer.php	26 May 2005 20:37:30 -0000	1.6
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: installer.php,v 1.5 2005/05/24 14:44:57 dgorski Exp $
+ * $Id: installer.php,v 1.6 2005/05/26 20:37:30 dgorski Exp $
  *
  * This file is part of coWiki. coWiki is free software under the terms of
  * the GNU General Public License (GPL). Read the LICENSE file. If you did
@@ -17,7 +17,7 @@
  * @author      Daniel T. Gorski, <[email protected]>
  * @copyright   (C) Daniel T. Gorski, {@link http://www.develnet.org}
  * @license     http://www.gnu.org/licenses/gpl.html
- * @version     $Revision: 1.5 $
+ * @version     $Revision: 1.6 $
  *
  */
 
@@ -85,7 +85,7 @@
         ob_start();
 
         // Trim all posted data
-        // Working with ecaped values is annoying and confusing
+        // Working with escaped values is annoying and confusing
         foreach($_POST as $k => $v) {
             if (ini_get('magic_quotes_gpc')) {
                 $_POST[$k] = stripslashes(trim($v));

Directory: /cowiki/includes/cowiki/class/util/
==============================================

File [changed]: class.HttpRequest.php
Url: http://cowiki.tigris.org/source/browse/cowiki/includes/cowiki/class/util/class.HttpRequest.php?r1=1.28&r2=1.29
Delta lines:  +3 -3
-------------------
--- class.HttpRequest.php	1 Mar 2005 03:02:35 -0000	1.28
+++ class.HttpRequest.php	26 May 2005 20:37:30 -0000	1.29
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: class.HttpRequest.php,v 1.28 2005/03/01 03:02:35 nibra Exp $
+ * $Id: class.HttpRequest.php,v 1.29 2005/05/26 20:37:30 dgorski Exp $
  *
  * This file is part of coWiki. coWiki is free software under the terms of
  * the GNU General Public License (GPL). Read the LICENSE file. If you did
@@ -17,7 +17,7 @@
  * @author      Daniel T. Gorski, <[email protected]>
  * @copyright   (C) Daniel T. Gorski, {@link http://www.develnet.org}
  * @license     http://www.gnu.org/licenses/gpl.html
- * @version     $Revision: 1.28 $
+ * @version     $Revision: 1.29 $
  *
  */
 
@@ -84,7 +84,7 @@
             $aRequest = array_merge($HTTP_GET_VARS, $HTTP_POST_VARS);
         }
 
-        // Working with ecaped values is annoying and confusing
+        // Working with escaped values is annoying and confusing
         foreach ($aRequest as $k => $v) {
             if (ini_get('magic_quotes_gpc')) {
                 $this->set($k, stripslashes($v));