You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2013/07/30 17:19:13 UTC

svn commit: r1508484 - /wookie/trunk/connector/php/WookieConnectorService.php

Author: scottbw
Date: Tue Jul 30 15:19:12 2013
New Revision: 1508484

URL: http://svn.apache.org/r1508484
Log:
used correct attribute name for widget id - see WOOKIE-416

Modified:
    wookie/trunk/connector/php/WookieConnectorService.php

Modified: wookie/trunk/connector/php/WookieConnectorService.php
URL: http://svn.apache.org/viewvc/wookie/trunk/connector/php/WookieConnectorService.php?rev=1508484&r1=1508483&r2=1508484&view=diff
==============================================================================
--- wookie/trunk/connector/php/WookieConnectorService.php (original)
+++ wookie/trunk/connector/php/WookieConnectorService.php Tue Jul 30 15:19:12 2013
@@ -509,7 +509,7 @@ class WookieConnectorService implements 
 
 			if($xmlObj instanceof SimpleXMLElement) {
 				foreach($xmlObj->children() as $widget) {
-				 $id = (string) $widget->attributes()->identifier;
+				 $id = (string) $widget->attributes()->id;
 				 $title = (string) $widget->title;
 				 $description = (string) $widget->description;
 				 $iconURL = (string) $widget->attributes()->icon;