aboutsummaryrefslogtreecommitdiffstats
path: root/git-tools
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-04-04 11:43:59 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-04-04 11:43:59 -0400
commitdc63db1860e597b1201994a17fd7679bfdc9b0d8 (patch)
tree11277ecc477ac29522f2e26ccb3be226c995b805 /git-tools
parentefdd1e623e2dc060ae9b524b67c624037d8a94f0 (diff)
downloadforums-dc63db1860e597b1201994a17fd7679bfdc9b0d8.tar
forums-dc63db1860e597b1201994a17fd7679bfdc9b0d8.tar.gz
forums-dc63db1860e597b1201994a17fd7679bfdc9b0d8.tar.bz2
forums-dc63db1860e597b1201994a17fd7679bfdc9b0d8.tar.xz
forums-dc63db1860e597b1201994a17fd7679bfdc9b0d8.zip
[ticket/10760] Fix numbering in php fun facts.
PHPBB3-10760
Diffstat (limited to 'git-tools')
-rwxr-xr-xgit-tools/hooks/pre-commit10
1 files changed, 5 insertions, 5 deletions
diff --git a/git-tools/hooks/pre-commit b/git-tools/hooks/pre-commit
index ecc3a35ba3..03babe47cd 100755
--- a/git-tools/hooks/pre-commit
+++ b/git-tools/hooks/pre-commit
@@ -112,19 +112,19 @@ then
# 2. as mentioned above, with all output turned on
# php will print parse errors twice, one time on stdout
# and one time on stderr.
- # 2. it is possible to set both display_errors and log_errors
+ # 3. it is possible to set both display_errors and log_errors
# to off. if this is done php will print the text
# "Errors parsing <file>" but will not say what
# the errors are. useful behavior, this.
- # 3. on my system display_errors defaults to on and
+ # 4. on my system display_errors defaults to on and
# log_errors defaults to off, therefore providing
# by default one copy of messages. your mileage may vary.
- # 4. by setting display_errors=stderr and log_errors=on,
+ # 5. by setting display_errors=stderr and log_errors=on,
# both sets of messages will be printed on stderr.
- # 5. php-cgi binary, given display_errors=stderr and
+ # 6. php-cgi binary, given display_errors=stderr and
# log_errors=on, still prints both sets of messages
# on stderr, but formats one set as an html fragment.
- # 6. your entry here? ;)
+ # 7. your entry here? ;)
$echo_e "$errors" | grep "^Parse error:"
if [ $? -ne 0 ]
then