[horde] Portal Issues

David Bates horde at voygr.com
Sat Jan 24 06:06:37 PST 2004


Okay..
I figured out the problem and have attached a unified diff for the powers 
that be to check.

When I modified is as per the diff it worked..

CVS Seems to be working again as well.

Thanks
DAve

At 11:27 PM 1/23/2004, David Bates wrote:
>Hello all,
>
>   I've been playing with the main layout in the HEAD version and when I 
> setup a DAte/Time Module (Block) for the login page I get this when it 
> displays:
>
>Notice: Undefined index: time in /var/www/html/horde/lib/Block/time.php on 
>line 44
>
>Anyone had this problem, I can get into it deeper.. I looked at the code 
>some and it seems to be pulling $this->_params['time'], but the _params 
>seems to be empty.. which makes sense as to why it says Undefined index..
>
>Let me know
>
>As well, everytime I try to update my libs, it get a error about createing 
>a directory in /tmp
>that there is no free space on device, but I have 12 Gig free.. just 
>wondering if something funky is going on with the CVS server.....
>
>Thanks
>Dave
>
>--
>Horde mailing list - Join the hunt: http://horde.org/bounties/#horde
>Frequently Asked Questions: http://horde.org/faq/
>To unsubscribe, mail: horde-unsubscribe at lists.horde.org
>
-------------- next part --------------
Index: time.php
===================================================================
RCS file: /repository/horde/lib/Block/time.php,v
retrieving revision 1.8
diff -u -r1.8 time.php
--- time.php	29 Oct 2003 03:38:44 -0000	1.8
+++ time.php	24 Jan 2004 13:43:28 -0000
@@ -11,11 +11,12 @@
 
     function getParams()
     {
-        return array('time' => array('type' => 'enum',
+        $params = array('time' => array('type' => 'enum',
                                      'name' => _("Time format"),
                                      'default' => '24-hour',
                                      'values' => array('24-hour' => '24 Hour Format',
                                                        '12-hour' => '12 Hour Format')));
+	return $params;
     }
 
     /**


More information about the horde mailing list