diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-03-24 10:36:22 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-03-24 10:36:22 +0000 |
commit | 512b5d355e3d5696510ebb25cba336313853d8fc (patch) | |
tree | 5bcf4222c8f7b44bad7fd6259fd4a2b28629ba69 /app-admin | |
parent | * bump (diff) | |
download | gentoo-2-512b5d355e3d5696510ebb25cba336313853d8fc.tar.gz gentoo-2-512b5d355e3d5696510ebb25cba336313853d8fc.tar.bz2 gentoo-2-512b5d355e3d5696510ebb25cba336313853d8fc.zip |
fix the fix
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/php-toolkit/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/php-toolkit/files/php-select-modules/libapache.sh | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-admin/php-toolkit/ChangeLog b/app-admin/php-toolkit/ChangeLog index 778e8a6f308e..fae2869b42e2 100644 --- a/app-admin/php-toolkit/ChangeLog +++ b/app-admin/php-toolkit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/php-toolkit # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/php-toolkit/ChangeLog,v 1.19 2008/03/24 10:24:09 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/php-toolkit/ChangeLog,v 1.20 2008/03/24 10:36:21 hollow Exp $ + + 24 Mar 2008; Benedikt Böhm <hollow@gentoo.org> + files/php-select-modules/libapache.sh: + fix the fix 24 Mar 2008; Benedikt Böhm <hollow@gentoo.org> files/php-select-modules/libapache.sh: diff --git a/app-admin/php-toolkit/files/php-select-modules/libapache.sh b/app-admin/php-toolkit/files/php-select-modules/libapache.sh index 78fe008a7afa..a03f36410cfe 100644 --- a/app-admin/php-toolkit/files/php-select-modules/libapache.sh +++ b/app-admin/php-toolkit/files/php-select-modules/libapache.sh @@ -174,7 +174,7 @@ showApacheConf () # if we get here, then apache is configured for a mod_php ... # is it one that is installed? - chosen="$( echo $chosen | tr '[[:lower:]]' '[[:upper:]]' )" + chosen="$( echo $chosen | tr '[[:upper:]]' '[[:lower:]]' )" for (( i = 0 ; i < ${#choices[@]} ; i = i + 1 )) ; do if [[ ${choices[$i]} == $chosen ]] ; then echo $chosen @@ -209,7 +209,7 @@ testApacheConf () # if we get here, then apache is configured for a mod_php ... # is it one that is installed? - chosen="$( echo $chosen | tr '[[:lower:]]' '[[:upper:]]' )" + chosen="$( echo $chosen | tr '[[:upper:]]' '[[:lower:]]' )" for (( i = 0 ; i < ${#choices[@]} ; i = i + 1 )) ; do if [[ ${choices[$i]} == $chosen ]] ; then # we have one installed; but is it what we want? |