CVS update: /cowiki/htdocs/setup/class/task/

[email protected] 12 May 2005 17:06:10 -0000
Newsgroups gmane.comp.php.cowiki.cvs
Message-ID <[email protected]>
User: dgorski 
Date: 2005/05/12 10:06:10

Modified:
   cowiki/htdocs/setup/class/task/class.TaskFinish.php

Log:
 Introduce remarks to install.seal file

File Changes:

Directory: /cowiki/htdocs/setup/class/task/
===========================================

File [changed]: class.TaskFinish.php
Url: http://cowiki.tigris.org/source/browse/cowiki/htdocs/setup/class/task/class.TaskFinish.php?r1=1.4&r2=1.5
Delta lines:  +4 -4
-------------------
--- class.TaskFinish.php	9 May 2005 20:44:07 -0000	1.4
+++ class.TaskFinish.php	12 May 2005 17:06:07 -0000	1.5
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: class.TaskFinish.php,v 1.4 2005/05/09 20:44:07 dgorski Exp $
+ * $Id: class.TaskFinish.php,v 1.5 2005/05/12 17:06:07 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.4 $
+ * @version     $Revision: 1.5 $
  *
  */
 
@@ -227,8 +227,8 @@
         $sSealName = $this->State->getHtdocsPath() . '/install.seal';
         $sPendName = $this->State->getHtdocsPath() . '/install.pending';
 
-        $sContent =   'DO NOT delete or modify this file manually!' . "\n";
-        $sContent .=  'Sealed: '. date('Ymd') . "\n";
+        $sContent =   '# DO NOT delete or modify this file manually!' . "\n";
+        $sContent .=  'Sealed = '. date('Ymd') . "\n";
         
         try {
             $Out = new FileOutputStream($sSealName);