]> git.plutz.net Git - shellwiki/blob - handlers/90_brackets.sh
Merge commit '9acd3b2b516d560f4b8ff1db6e13b4ff519abfce'
[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