Ignore:
Timestamp:
07/29/10 23:14:41 (19 months ago)
Author:
mattlevine
Message:
  1. Adding fade in for loaded tabs.
  2. Fixing Oracle sort issue.
  3. Fixing css hompage issue.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/requirements/mura/content/contentGateway.cfc

    r2578 r2590  
    456456                                  order by  
    457457                                         
    458                                         <cfif dbType neq "oracle"> 
     458                                        <cfif dbType neq "oracle" or arguments.sortBy eq "orderno"> 
    459459                                                <cfswitch expression="#arguments.sortBy#"> 
    460460                                                        <cfcase value="menutitle,title,lastupdate,releasedate,orderno,displayStart,created,credits,type,subtype"> 
     
    882882                                qExtendedSort.extendedSort #arguments.sortDirection#     
    883883                                <cfelse> 
    884                                  tcontent.#arguments.sortBy# #arguments.sortDirection# 
    885                                  </cfif>  
     884                                        <cfif dbType neq "oracle" or arguments.sortBy eq "orderno"> 
     885                                                tcontent.#arguments.sortBy# #arguments.sortDirection# 
     886                                        <cfelse> 
     887                                                lower(tcontent.#arguments.sortBy#) #arguments.sortDirection# 
     888                                        </cfif> 
     889                                </cfif>  
    886890                        <cfelseif arguments.sortBy eq 'rating'> 
    887891                                Rating #arguments.sortDirection#, Votes #arguments.sortDirection#  
Note: See TracChangeset for help on using the changeset viewer.