Author: tyrell
Date: Mon Jan 28 22:54:32 2008
New Revision: 13106

Log:

Changing string comparison method.

Modified:
   trunk/mashup/java/modules/www/taskbar.jsp

Modified: trunk/mashup/java/modules/www/taskbar.jsp
==============================================================================
--- trunk/mashup/java/modules/www/taskbar.jsp   (original)
+++ trunk/mashup/java/modules/www/taskbar.jsp   Mon Jan 28 22:54:32 2008
@@ -76,7 +76,7 @@
 <ul>
 <!--Will be available only to users with Admin priviledges OR who are Authors 
of the current Mashup, if there is a Mashup service set by the parent page.-->
 <% if (((RegistryUtils.isAdminRole(registry)) ||
-        (author != null && author.equalsIgnoreCase(currentUser))) &&
+        (author != null && author.equals(currentUser))) &&
         (paramMashupServiceName != null)) { %>
 <li id="service-status">
     Service status not available

_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to