diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-01-08 11:52:56 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-01-08 11:52:56 +0100 |
commit | 508170cfb7b7722025748f9a3778cd8cf34fc64e (patch) | |
tree | 5d660c3768a2919d4cc08114e49c91faeb26676b /inc/parser/handler.php | |
parent | 8552954b29e133ddab7f6b0d1dff7a77d40a5452 (diff) | |
parent | 38c6f603e006f27fd6194d1d2c14d3087d0e0cc9 (diff) | |
download | rpg-508170cfb7b7722025748f9a3778cd8cf34fc64e.tar.gz rpg-508170cfb7b7722025748f9a3778cd8cf34fc64e.tar.bz2 |
Merge pull request #997 from BCLibCoop/master
Optionally render RSS unsorted.
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r-- | inc/parser/handler.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index d96a01a60..731c19828 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -526,6 +526,7 @@ class Doku_Handler { $p['author'] = (preg_match('/\b(by|author)/',$params)); $p['date'] = (preg_match('/\b(date)/',$params)); $p['details'] = (preg_match('/\b(desc|detail)/',$params)); + $p['nosort'] = (preg_match('/\b(nosort)\b/',$params)); if (preg_match('/\b(\d+)([dhm])\b/',$params,$match)) { $period = array('d' => 86400, 'h' => 3600, 'm' => 60); |