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/09 00:06:48 UTC

svn commit: r664566 - /incubator/shindig/trunk/php/src/gadgets/ViewSpec.php

Author: chabotc
Date: Sun Jun  8 15:06:48 2008
New Revision: 664566

URL: http://svn.apache.org/viewvc?rev=664566&view=rev
Log:
that should have been xml style naming..

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

Modified: incubator/shindig/trunk/php/src/gadgets/ViewSpec.php
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/ViewSpec.php?rev=664566&r1=664565&r2=664566&view=diff
==============================================================================
--- incubator/shindig/trunk/php/src/gadgets/ViewSpec.php (original)
+++ incubator/shindig/trunk/php/src/gadgets/ViewSpec.php Sun Jun  8 15:06:48 2008
@@ -39,8 +39,8 @@
 		$this->name = $name;
 		$this->view = isset($attributes['view']) ? trim($attributes['view']) : '';
 		$this->quirks = trim($attributes['quirks']);
-		$this->preferedHeight = isset($attributes['preferedHeight']) ? trim($attributes['preferedHeight']) : '';
-		$this->preferedWidth = isset($attributes['preferedWidth']) ? trim($attributes['preferedWidth']) : '';
+		$this->preferedHeight = isset($attributes['prefered_height']) ? trim($attributes['prefered_height']) : '';
+		$this->preferedWidth = isset($attributes['prefered_width']) ? trim($attributes['prefered_width']) : '';
 		if (empty($this->quirks)) {
 			$this->quirks = true;
 		} else {