|
From: <gem...@li...> - 2012-12-06 12:20:33
|
Revision: 1054
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=1054&view=rev
Author: mennodekker
Date: 2012-12-06 12:20:24 +0000 (Thu, 06 Dec 2012)
Log Message:
-----------
Fixed typo
Modified Paths:
--------------
branches/receptioncodes/library/classes/MUtil/Model/DatabaseModelAbstract.php
Modified: branches/receptioncodes/library/classes/MUtil/Model/DatabaseModelAbstract.php
===================================================================
--- branches/receptioncodes/library/classes/MUtil/Model/DatabaseModelAbstract.php 2012-12-06 11:50:35 UTC (rev 1053)
+++ branches/receptioncodes/library/classes/MUtil/Model/DatabaseModelAbstract.php 2012-12-06 12:20:24 UTC (rev 1054)
@@ -332,7 +332,7 @@
$finfo['type'] = MUtil_Model::TYPE_DATE;
$this->set($name, 'storageFormat', 'yyyy-MM-dd');
$this->setOnSave($name, array($this, 'formatSaveDate'));
- $this->setOnLoad($name, array($this, 'formatLoadData'));
+ $this->setOnLoad($name, array($this, 'formatLoadDate'));
break;
case 'datetime':
@@ -340,14 +340,14 @@
$finfo['type'] = MUtil_Model::TYPE_DATETIME;
$this->set($name, 'storageFormat', 'yyyy-MM-dd HH:mm:ss');
$this->setOnSave($name, array($this, 'formatSaveDate'));
- $this->setOnLoad($name, array($this, 'formatLoadData'));
+ $this->setOnLoad($name, array($this, 'formatLoadDate'));
break;
case 'time':
$finfo['type'] = MUtil_Model::TYPE_TIME;
$this->set($name, 'storageFormat', 'HH:mm:ss');
$this->setOnSave($name, array($this, 'formatSaveDate'));
- $this->setOnLoad($name, array($this, 'formatLoadData'));
+ $this->setOnLoad($name, array($this, 'formatLoadDate'));
break;
case 'int':
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|