
gabrielwicke at users
May 20, 2004, 4:13 AM
Post #1 of 1
(2 views)
Permalink
|
|
phase3/includes EditPage.php,1.74,1.75
|
|
Update of /cvsroot/wikipedia/phase3/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17568 Modified Files: EditPage.php Log Message: missing parentheses Index: EditPage.php =================================================================== RCS file: /cvsroot/wikipedia/phase3/includes/EditPage.php,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** EditPage.php 14 May 2004 13:03:57 -0000 1.74 --- EditPage.php 20 May 2004 11:13:51 -0000 1.75 *************** *** 114,118 **** $isConflict = false; // css / js subpages of user pages get a special treatment ! $isCssJsSubpage = Namespace::getUser() == $wgTitle->getNamespace() and preg_match("/\\.(css|js)$/", $wgTitle->getText() ); if(!$this->mTitle->getArticleID()) { # new article --- 114,118 ---- $isConflict = false; // css / js subpages of user pages get a special treatment ! $isCssJsSubpage = (Namespace::getUser() == $wgTitle->getNamespace() and preg_match("/\\.(css|js)$/", $wgTitle->getText() )); if(!$this->mTitle->getArticleID()) { # new article
|