Fix syntax errors.
authorMatt Selsky <selsky@columbia.edu>
Mon, 20 Sep 2010 05:02:08 +0000 (01:02 -0400)
committerMatt Selsky <selsky@columbia.edu>
Mon, 20 Sep 2010 05:02:08 +0000 (01:02 -0400)
folks/edit/friends/index.php
folks/edit/friends/know.php
whups/lib/tests/TestBase.php

index a9c7106..5ab2ab4 100644 (file)
@@ -30,11 +30,11 @@ if ($list instanceof PEAR_Error) {
 // Prepare actions
 $actions = array(
     array('url' => Horde::url('edit/friends/add.php'),
-          'img' => Horde::img('delete.png');
+          'img' => Horde::img('delete.png'),
           'id' => 'user',
           'name' => _("Remove")),
     array('url' => Horde::url('user.php'),
-          'img' => Horde::img('user.png');
+          'img' => Horde::img('user.png'),
           'id' => 'user',
           'name' => _("View profile")));
 if ($registry->hasInterface('letter')) {
index eed5e53..fc4272c 100644 (file)
@@ -30,11 +30,11 @@ if ($list instanceof PEAR_Error) {
 // Prepare actions
 $actions = array(
     array('url' => Horde::url('edit/friends/add.php'),
-          'img' => Horde::img('delete.png');
+          'img' => Horde::img('delete.png'),
           'id' => 'user',
           'name' => _("Add")),
     array('url' => Horde::url('user.php'),
-          'img' => Horde::img('user.png');
+          'img' => Horde::img('user.png'),
           'id' => 'user',
           'name' => _("View profile")));
 if ($registry->hasInterface('letter')) {
index 4c54ec2..0bf6028 100644 (file)
@@ -13,7 +13,7 @@ class Whups_TestBase Extends PHPUnit_Framework_TestCase {
     function setUp()
     {
         require_once dirname(__FILE__) . '/../Application.php';
-        Horde_Registry::appInit('whups', array('authentication' => 'none', 'cli' => true);
+        Horde_Registry::appInit('whups', array('authentication' => 'none', 'cli' => true));
     }
 
     /**