app/soc/logic/lists.py
changeset 560 a32be584ee04
parent 553 c0cc20b4afc9
child 572 1b3e7280743a
--- a/app/soc/logic/lists.py	Sat Nov 22 18:16:42 2008 +0000
+++ b/app/soc/logic/lists.py	Sat Nov 22 18:22:36 2008 +0000
@@ -137,7 +137,6 @@
     """Returns the redirect for the current row item in the current list.
     """
 
-    logic = self.get('logic')
-    action = self.get('action')
-    suffix = logic.getKeySuffix(self.row_data)
-    return "%s/%s" % (action, suffix)
+    action, args = self.get('action')
+    result = action(self.row_data, args)
+    return result