You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/06/13 18:49:47 UTC

svn commit: r667594 - /incubator/shindig/trunk/php/src/gadgets/Gadget.php

Author: chabotc
Date: Fri Jun 13 09:49:47 2008
New Revision: 667594

URL: http://svn.apache.org/viewvc?rev=667594&view=rev
Log:
SHINDIG-382 While adding substitutions i forgot the returns, doh

Modified:
    incubator/shindig/trunk/php/src/gadgets/Gadget.php

Modified: incubator/shindig/trunk/php/src/gadgets/Gadget.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/Gadget.php?rev=667594&r1=667593&r2=667594&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/Gadget.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/Gadget.php Fri Jun 13 09:49:47 2008
@@ -189,32 +189,32 @@
 
 	public function getAuthorAffiliation()
 	{
-		$this->substitutions->substitute($this->authorAffiliation);
+		return $this->substitutions->substitute($this->authorAffiliation);
 	}
 
 	public function getAuthorLocation()
 	{
-		$this->substitutions->substitute($this->authorLocation);
+		return $this->substitutions->substitute($this->authorLocation);
 	}
 
 	public function getAuthorPhoto()
 	{
-		$this->substitutions->substitute($this->authorPhoto);
+		return $this->substitutions->substitute($this->authorPhoto);
 	}
 
 	public function getAuthorAboutme()
 	{
-		$this->substitutions->substitute($this->authorAboutMe);
+		return $this->substitutions->substitute($this->authorAboutMe);
 	}
 
 	public function getAuthorQuote()
 	{
-		$this->substitutions->substitute($this->authorQuote);
+		return $this->substitutions->substitute($this->authorQuote);
 	}
 
 	public function getAuthorLink()
 	{
-		$this->substitutions->substitute($this->authorLink);
+		return $this->substitutions->substitute($this->authorLink);
 	}
 
 	public function getShowStats()
@@ -229,7 +229,7 @@
 
 	public function getString()
 	{
-		$this->substitutions->substitute($this->string);
+		return $this->substitutions->substitute($this->string);
 	}
 
 	public function getWidth()