From: Matt Selsky Date: Mon, 20 Sep 2010 05:02:08 +0000 (-0400) Subject: Fix syntax errors. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=df8469fd272df56f33085ab018a0f7de1535ebb6;p=horde.git Fix syntax errors. --- diff --git a/folks/edit/friends/index.php b/folks/edit/friends/index.php index a9c710653..5ab2ab492 100644 --- a/folks/edit/friends/index.php +++ b/folks/edit/friends/index.php @@ -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')) { diff --git a/folks/edit/friends/know.php b/folks/edit/friends/know.php index eed5e5316..fc4272c97 100644 --- a/folks/edit/friends/know.php +++ b/folks/edit/friends/know.php @@ -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')) { diff --git a/whups/lib/tests/TestBase.php b/whups/lib/tests/TestBase.php index 4c54ec2cf..0bf6028f8 100644 --- a/whups/lib/tests/TestBase.php +++ b/whups/lib/tests/TestBase.php @@ -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)); } /**