mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Throw exception on xsl:sort lang not on order. Oops.
This commit is contained in:
parent
c4d237e97b
commit
04de9f2b60
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ public:
|
|||
datatype = context_.xpath_attribute_value_template(attr["data-type"]);
|
||||
order = context_.xpath_attribute_value_template(attr["order"]);
|
||||
|
||||
if(attr["order"].length() != 0)
|
||||
if(attr["lang"].length() != 0)
|
||||
throw SAX::SAXException("Sorry! Don't support xsl:sort lang attribute yet");
|
||||
|
||||
sort_ = new Sort(select,
|
||||
|
|
Loading…
Reference in a new issue