Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv23482
Modified Files:
loadsave.php
Log Message:
Quick fix to hide "X-RCS_ID: $Id$" from the sf CVS server (D'oh!)
Index: loadsave.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/loadsave.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** loadsave.php 2002/01/09 02:42:29 1.18
--- loadsave.php 2002/01/09 02:59:05 1.19
***************
*** 39,43 ****
$head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . "\r\n";
$head .= sprintf("Mime-Version: 1.0 (Produced by PhpWiki %s)\r\n", PHPWIKI_VERSION);
! $head .= "X-RCS_ID: $Id$";
$iter = $page->getAllRevisions();
--- 39,43 ----
$head .= "Date: " . Rfc2822DateTime($current->get('mtime')) . "\r\n";
$head .= sprintf("Mime-Version: 1.0 (Produced by PhpWiki %s)\r\n", PHPWIKI_VERSION);
! $head .= "X-RCS_ID: $" ."Id" ."$";
$iter = $page->getAllRevisions();
|