Changeset 2667

Show
Ignore:
Timestamp:
03/06/08 07:29:24 (10 months ago)
Author:
ksprotte
Message:

oh I was sure to forget to remove the REQ arg when I do bos -> trunk ...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/projects/bos/web/allocation-area-handlers.lisp

    r2666 r2667  
    8484    (:h2 "The allocation area has been deleted"))) 
    8585 
    86 (defmethod handle-object-form ((handler allocation-area-handler) (action (eql :activate)) allocation-area req
     86(defmethod handle-object-form ((handler allocation-area-handler) (action (eql :activate)) allocation-area
    8787  (bos.m2::activate-allocation-area allocation-area) 
    88   (with-bos-cms-page (req :title "Allocation area has been activated") 
     88  (with-bos-cms-page (:title "Allocation area has been activated") 
    8989    (:h2 "The allocation area has been activated"))) 
    9090 
    91 (defmethod handle-object-form ((handler allocation-area-handler) (action (eql :deactivate)) allocation-area req
     91(defmethod handle-object-form ((handler allocation-area-handler) (action (eql :deactivate)) allocation-area
    9292  (bos.m2::deactivate-allocation-area allocation-area) 
    93   (with-bos-cms-page (req :title "Allocation area has been deactivated") 
     93  (with-bos-cms-page (:title "Allocation area has been deactivated") 
    9494    (:h2 "The allocation area has been deactivated"))) 
    9595