diff options
author | Benny Baumann <BenBE@geshi.org> | 2014-04-01 10:27:58 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2014-04-01 10:27:58 +0200 |
commit | 7edae081657bd29b34caa998e4fbfddf7be3ea8d (patch) | |
tree | c00a988814183164988d3f1f4d47f750ea17a59b | |
parent | 0d791f450e65657cfd615471cf31dfc0ba5d9b37 (diff) | |
parent | 7dc9f2b4fbc39bb5cfb1f6b1428f2824a621fa05 (diff) | |
download | cacert-devel-7edae081657bd29b34caa998e4fbfddf7be3ea8d.tar.gz cacert-devel-7edae081657bd29b34caa998e4fbfddf7be3ea8d.tar.xz cacert-devel-7edae081657bd29b34caa998e4fbfddf7be3ea8d.zip |
Merge branch 'bug-1070' into release
-rw-r--r-- | includes/general.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/general.php b/includes/general.php index d89c0e6..5c61ec0 100644 --- a/includes/general.php +++ b/includes/general.php @@ -219,7 +219,7 @@ //echo "Points due to name matches: $points<br/>"; $shellpwd = escapeshellarg($pwd); - $do = `grep $shellpwd /usr/share/dict/american-english`; + $do = `grep -F -- $shellpwd /usr/share/dict/american-english`; if($do) $points--; |