Index: openacs-4/packages/xowiki/tcl/link-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/link-procs.tcl,v diff -u -r1.83 -r1.84 --- openacs-4/packages/xowiki/tcl/link-procs.tcl 26 Jan 2011 13:05:20 -0000 1.83 +++ openacs-4/packages/xowiki/tcl/link-procs.tcl 29 Mar 2011 15:02:31 -0000 1.84 @@ -316,9 +316,14 @@ # Class create ::xowiki::Link::css -superclass ::xowiki::Link::file -parameter { + order } ::xowiki::Link::css instproc render_found {href label} { - ::xo::Page requireCSS $href + if {[my exists order]} { + ::xo::Page requireCSS -order [my order] $href + } else { + ::xo::Page requireCSS $href + } return "" }