[Rt-commit] r12856 - rt/branches/3.8-TESTING/share/html

sunnavy at bestpractical.com sunnavy at bestpractical.com
Tue Jun 3 15:42:16 EDT 2008


Author: sunnavy
Date: Tue Jun  3 15:42:15 2008
New Revision: 12856

Modified:
   rt/branches/3.8-TESTING/share/html/index.html

Log:
fixed "Quick create does not set requestor" bug: we passed wrong Requestor arg

Modified: rt/branches/3.8-TESTING/share/html/index.html
==============================================================================
--- rt/branches/3.8-TESTING/share/html/index.html	(original)
+++ rt/branches/3.8-TESTING/share/html/index.html	Tue Jun  3 15:42:15 2008
@@ -88,7 +88,8 @@
                     Queue => $ARGS{'Queue'},
                     Owner => $ARGS{'Owner'},
                     Status => 'new',
-                    Requestor => $session{'CurrentUser'}->id,
+                    # yes! it's Requestors, not Requestor
+                    Requestors => $session{'CurrentUser'}->id,
                     From => $session{'CurrentUser'}->id,
                     Content => $ARGS{'Content'},
                     Subject => $ARGS{'Subject'});


More information about the Rt-commit mailing list