]> git.plutz.net Git - shellwiki/blob - handlers/90_brackets.sh
Merge commit '1f887be68c8e777cdaa6853eb942f7b691bc1e4e'
[shellwiki] / handlers / 90_brackets.sh
1 #!/bin/sh
2
3 # spacial case for bracket pages that are not handled otherwise
4 # attachment and edit (and really all) handlers should take precedence
5
6 case "${PATH_INFO}" in
7   */\[*\]/*)
8     theme_page "${PATH_INFO}"
9     return 0
10     ;;
11 esac
12
13 return 1