svn: /web/doc-editor/trunk/install/ firstRun.php
[email protected] (Yannick Torres)
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <[email protected]> |
yannick Sun, 28 Mar 2010 19:51:57 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=296990
Log:
Store updateData info
Changed paths:
U web/doc-editor/trunk/install/firstRun.php
Modified: web/doc-editor/trunk/install/firstRun.php
===================================================================
--- web/doc-editor/trunk/install/firstRun.php 2010-03-28 19:16:44 UTC (rev 296989)
+++ web/doc-editor/trunk/install/firstRun.php 2010-03-28 19:51:57 UTC (rev 296990)
@@ -72,9 +72,11 @@
TranslationStatistic::getInstance()->computeSummary('all');
TranslatorStatistic::getInstance()->computeSummary('all');
- // We update the last update date/time into DB
- $rm->setLastUpdate('data');
+ // Store this info
+ $info = array();
+ $info['user'] = 'root';
+ $rm->setStaticValue('info', 'updateData', json_encode($info), true);
}