Author: snoopdave
Date: Sun Nov 25 22:51:17 2012
New Revision: 1413440

URL: http://svn.apache.org/viewvc?rev=1413440&view=rev
Log:
fixing position parameter not defined correctly in 
WeblogEntryTagAggregate.orm.xml
https://issues.apache.org/jira/browse/ROL-1949

Thanks, Harsh!

Modified:
    
roller/trunk/weblogger-business/src/main/resources/org/apache/roller/weblogger/pojos/WeblogEntryTagAggregate.orm.xml

Modified: 
roller/trunk/weblogger-business/src/main/resources/org/apache/roller/weblogger/pojos/WeblogEntryTagAggregate.orm.xml
URL: 
http://svn.apache.org/viewvc/roller/trunk/weblogger-business/src/main/resources/org/apache/roller/weblogger/pojos/WeblogEntryTagAggregate.orm.xml?rev=1413440&r1=1413439&r2=1413440&view=diff
==============================================================================
--- 
roller/trunk/weblogger-business/src/main/resources/org/apache/roller/weblogger/pojos/WeblogEntryTagAggregate.orm.xml
 (original)
+++ 
roller/trunk/weblogger-business/src/main/resources/org/apache/roller/weblogger/pojos/WeblogEntryTagAggregate.orm.xml
 Sun Nov 25 22:51:17 2012
@@ -33,7 +33,7 @@
             <query>SELECT w.name, SUM(w.total) FROM WeblogEntryTagAggregate w 
WHERE w.weblog = ?1 GROUP BY w.name, w.total ORDER BY w.total DESC</query>
         </named-query>
         <named-query 
name="WeblogEntryTagAggregate.getPopularTagsByWebsiteNull&amp;StartDate">
-            <query>SELECT w.name, SUM(w.total) FROM WeblogEntryTagAggregate w 
WHERE w.weblog IS NULL AND w.lastUsed &gt;= ?2 GROUP BY w.name, w.total ORDER 
BY w.total DESC</query>
+            <query>SELECT w.name, SUM(w.total) FROM WeblogEntryTagAggregate w 
WHERE w.weblog IS NULL AND w.lastUsed &gt;= ?1 GROUP BY w.name, w.total ORDER 
BY w.total DESC</query>
         </named-query>
         <named-query 
name="WeblogEntryTagAggregate.getPopularTagsByWebsiteNull">
             <query>SELECT w.name, SUM(w.total) FROM WeblogEntryTagAggregate w 
WHERE w.weblog IS NULL GROUP BY w.name, w.total ORDER BY w.total DESC</query>


Reply via email to