Author: jonathan Date: Thu Jul 17 14:53:14 2008 New Revision: 19437 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=19437
Log: MASHUP-971: Altered null descriptions to "" instead of "null" Modified: trunk/mashup/java/modules/www/mashup.jsp Modified: trunk/mashup/java/modules/www/mashup.jsp URL: http://wso2.org/svn/browse/wso2/trunk/mashup/java/modules/www/mashup.jsp?rev=19437&r1=19436&r2=19437&view=diff ============================================================================== --- trunk/mashup/java/modules/www/mashup.jsp (original) +++ trunk/mashup/java/modules/www/mashup.jsp Thu Jul 17 14:53:14 2008 @@ -62,6 +62,7 @@ String author = resource.getAuthorUserName(); String authorFullName = RegistryUtils.getFullName(request, author); String description = resource.getDescription(); + if (description == null) description = ""; //This is the service name understood by WSAS and should be used in all calls to WSAS services String mashupServiceName = author + "-" + mashup; _______________________________________________ Mashup-dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/mashup-dev
