Be careful when you commit changes to index.php. It breaks the demo and
test sites. Not a huge deal, but jsut something to be aware of.
Some of you might not know that there even is a test site. It's reloaded
from scratch every night (database schema wiped and reloaded too).
http://phpwiki.sf.net/test/
~swain
Carsten Klapp wrote:
>Update of /cvsroot/phpwiki/phpwiki
>In directory sc8-pr-cvs1:/tmp/cvs-serv7942
>
>Modified Files:
> index.php
>Log Message:
>ACK! gettext is not available at this point in index.php.
>
>Index: index.php
>===================================================================
>RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
>retrieving revision 1.113
>retrieving revision 1.114
>diff -u -2 -b -p -d -r1.113 -r1.114
>--- index.php 5 Dec 2003 15:51:37 -0000 1.113
>+++ index.php 5 Dec 2003 16:00:42 -0000 1.114
>@@ -650,5 +650,5 @@ define('INTERWIKI_MAP_FILE', "lib/interw
> //
> // The default behavior is to match Category* and Topic* links.
>-$keywords = array(_("Category"), _("Topic"));
>+$keywords = array("Category", "Topic");
> $KeywordLinkRegexp = '(?<=^'. join('|^', $keywords) . ')[[:upper:]].*$';
>
>@@ -666,5 +666,5 @@ if (!defined('COPYRIGHTPAGE_URL')) defin
> 'http://www.gnu.org/copyleft/gpl.html#SEC1');
> if (!defined('AUTHORPAGE_TITLE')) define('AUTHORPAGE_TITLE',
>- _("The PhpWiki Programming Team"));
>+ "The PhpWiki Programming Team");
> if (!defined('AUTHORPAGE_URL')) define('AUTHORPAGE_URL',
> 'http://phpwiki.sourceforge.net/phpwiki/ThePhpWikiProgrammingTeam');
>@@ -832,4 +832,7 @@ if (defined('VIRTUAL_PATH') and defined(
>
> // $Log$
>+// Revision 1.114 2003/12/05 16:00:42 carstenklapp
>+// ACK! gettext is not available at this point in index.php.
>+//
> // Revision 1.113 2003/12/05 15:51:37 carstenklapp
> // Added note that use of the configurator is depreciated.
>
>
>
>-------------------------------------------------------
>This SF.net email is sponsored by: SF.net Giveback Program.
>Does SourceForge.net help you be more productive? Does it
>help you create better code? SHARE THE LOVE, and help us help
>YOU! Click Here: http://sourceforge.net/donate/
>_______________________________________________
>phpwiki-checkins mailing list
>php...@li...
>https://lists.sourceforge.net/lists/listinfo/phpwiki-checkins
>
>
>
|