codesite...@google.com
unread,Jun 16, 2009, 11:19:29 PM6/16/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to surforce...@googlegroups.com
Author: enriqueplace
Date: Tue Jun 16 20:10:59 2009
New Revision: 54
Modified:
trunk/library/Zsurforce/View/Helper/DateFormat.php
Log:
Agrega validación: si la fecha por parámetros está vacía, no hace nada
Modified: trunk/library/Zsurforce/View/Helper/DateFormat.php
==============================================================================
--- trunk/library/Zsurforce/View/Helper/DateFormat.php (original)
+++ trunk/library/Zsurforce/View/Helper/DateFormat.php Tue Jun 16 20:10:59
2009
@@ -16,10 +16,12 @@
*/
public function dateFormat ($date)
{
- $fecha = explode(" ", $date);
- // $hora = $fecha[1];
- $f = explode("-", $fecha[0]);
- $xhtml = $f['2'] . "/" . $f['1'] . "/" . $f['0'];
- return $xhtml;
+ if($date != ''){
+ $fecha = explode(" ", $date);
+ // $hora = $fecha[1];
+ $f = explode("-", $fecha[0]);
+ $xhtml = $f['2'] . "/" . $f['1'] . "/" . $f['0'];
+ return $xhtml;
+ }
}
}