Skip to content

Commit

Permalink
Bug fix related to date conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeSaferite committed Mar 29, 2012
1 parent 578492e commit c4731d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/code/local/MediaBurst/Sms/Model/Message.php
Expand Up @@ -79,7 +79,7 @@ protected function _toDbDate($date = null)
if (empty($date)) {
$date = new Zend_Date();
} else {
$date = new Zend_Date(now(), Zend_Date::TIMESTAMP);
$date = new Zend_Date(strtotime($date), Zend_Date::TIMESTAMP);
}
}

Expand Down
2 changes: 1 addition & 1 deletion app/code/local/MediaBurst/Sms/etc/config.xml
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<MediaBurst_Sms>
<version>1.1.2</version>
<version>1.1.3</version>
</MediaBurst_Sms>
</modules>
<global>
Expand Down

0 comments on commit c4731d7

Please sign in to comment.