From: Tim Starling Date: Sun, 10 Apr 2005 17:00:20 +0000 (+0000) Subject: bug, missing timestamp in insertNewArticle X-Git-Tag: 1.5.0alpha1~315 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/journal.php?a=commitdiff_plain;h=a3502095c5678184ccb66719dffa4ac2f16d6c09;p=lhc%2Fweb%2Fwiklou.git bug, missing timestamp in insertNewArticle --- diff --git a/includes/Article.php b/includes/Article.php index 508d76eb34..472d46dae5 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -905,6 +905,7 @@ class Article { $ttl = $this->mTitle->getDBkey(); $text = $this->preSaveTransform( $text ); $isminor = ( $isminor && $wgUser->isLoggedIn() ) ? 1 : 0; + $now = wfTimestampNow(); $dbw =& wfGetDB( DB_MASTER );