From: Geoffrey T. D. <da...@us...> - 2001-11-04 03:46:13
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv20139/lib Modified Files: Tag: release-1_2-branch pgsql.php msql.php Log Message: Fix bug reported by Roger Goun <ro...@bc...>: Wrap RCS $Id$ in call to rcs_id(). (In some cases (admin.php) we must not emit any output until we've set some HTTP headers.) Index: pgsql.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/Attic/pgsql.php,v retrieving revision 1.4.2.2 retrieving revision 1.4.2.3 diff -C2 -r1.4.2.2 -r1.4.2.3 *** pgsql.php 2001/09/21 21:57:07 1.4.2.2 --- pgsql.php 2001/11/04 03:46:10 1.4.2.3 *************** *** 1,4 **** ! <!-- $Id$ --> ! <?php /* --- 1,3 ---- ! <?php rcs_id('$Id$'); /* Index: msql.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/Attic/msql.php,v retrieving revision 1.6.2.1 retrieving revision 1.6.2.2 diff -C2 -r1.6.2.1 -r1.6.2.2 *** msql.php 2001/08/18 00:34:27 1.6.2.1 --- msql.php 2001/11/04 03:46:10 1.6.2.2 *************** *** 1,4 **** ! <!-- $Id$ --> ! <?php /* --- 1,3 ---- ! <?php rcs_id('$Id$'); /* |