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