]> git.plutz.net Git - shellwiki/blob - 90_brackets.sh
b6b25383f32b4d58e000ac110e3cb0d0b45b64e5
[shellwiki] / 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