Ignore:
Timestamp:
Feb 18, 2010, 1:29:00 AM (14 years ago)
Author:
gav
Message:

Minor code formatting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/InventoryItemDetailedController.groovy

    r298 r375  
    5656        // In the case of an actionSubmit button, rewrite action name from 'index'.
    5757        if(params._action_Show)
    58         { params.action='show' }
     58            params.action='show'
    5959
    6060        if(!InventoryItem.exists(params.id)) {
     
    107107
    108108    def edit = {
    109        
     109
    110110        // In the case of an actionSubmit button, rewrite action name from 'index'.
    111111        if(params._action_Edit)
    112         { params.action='edit' }
    113        
     112            params.action='edit'
     113
    114114        def inventoryItemInstance = InventoryItem.get( params.id )
    115115
Note: See TracChangeset for help on using the changeset viewer.