codesite...@google.com
unread,May 3, 2009, 6:27:06 PM5/3/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: Sun May 3 15:26:32 2009
New Revision: 52
Modified:
trunk/library/Zsurforce/View/Helper/HtmlEmailOfuscado.php
Log:
Agrega control en caso de que email no esté definido correctamente
Modified: trunk/library/Zsurforce/View/Helper/HtmlEmailOfuscado.php
==============================================================================
--- trunk/library/Zsurforce/View/Helper/HtmlEmailOfuscado.php (original)
+++ trunk/library/Zsurforce/View/Helper/HtmlEmailOfuscado.php Sun May 3
15:26:32 2009
@@ -18,6 +18,10 @@
{
$arr = explode('@', $email);
- return $arr[0] .' en ' .$arr[1];
+ if(count($arr) > 1){
+ return $arr[0] .' en ' .$arr[1];
+ }else{
+ return "falta configurar email en config.ini";
+ }
}
}