From: <gem...@li...> - 2012-02-13 09:00:00
|
Revision: 467 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=467&view=rev Author: michieltcs Date: 2012-02-13 08:59:49 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Fix E_NOTICE Modified Paths: -------------- branches/1.5.0-pulse/library/classes/Gems/Email/EmailFormAbstract.php branches/1.5.0-pulse/library/snippets/Organization/OrganizationEditSnippet.php Modified: branches/1.5.0-pulse/library/classes/Gems/Email/EmailFormAbstract.php =================================================================== --- branches/1.5.0-pulse/library/classes/Gems/Email/EmailFormAbstract.php 2012-02-09 11:46:23 UTC (rev 466) +++ branches/1.5.0-pulse/library/classes/Gems/Email/EmailFormAbstract.php 2012-02-13 08:59:49 UTC (rev 467) @@ -54,7 +54,7 @@ */ protected $escort; - protected $messages; + protected $messages = array(); protected $model; Modified: branches/1.5.0-pulse/library/snippets/Organization/OrganizationEditSnippet.php =================================================================== --- branches/1.5.0-pulse/library/snippets/Organization/OrganizationEditSnippet.php 2012-02-09 11:46:23 UTC (rev 466) +++ branches/1.5.0-pulse/library/snippets/Organization/OrganizationEditSnippet.php 2012-02-13 08:59:49 UTC (rev 467) @@ -54,7 +54,7 @@ public function afterSave($changed) { - $org = $this->loader->getOrganization($data['gor_id_organization']); + $org = $this->loader->getOrganization($changed['gor_id_organization']); $org->invalidateCache(); // Make sure any changes in the allowed list are reflected. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |