commit: b82579ced667244764c67d9fbe622695c3e9fe61
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 8 18:29:13 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Jan 8 18:29:13 2016 +0000
URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=b82579ce
Remove unnecessary quoting.
src/php.eselect.in | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/php.eselect.in b/src/php.eselect.in
index 9f5ee1a..2e9ec8d 100644
--- a/src/php.eselect.in
+++ b/src/php.eselect.in
@@ -422,19 +422,19 @@ set_apache2() {
}
set_cli() {
- set_sapi "cli" "${1}"
+ set_sapi cli "${1}"
}
set_cgi() {
- set_sapi "cgi" "${1}"
+ set_sapi cgi "${1}"
}
set_phpdbg() {
- set_sapi "dbg" "${1}"
+ set_sapi dbg "${1}"
}
set_fpm() {
- set_sapi "fpm" "${1}"
+ set_sapi fpm "${1}"
echo "Please restart php-fpm for the changes to take effect."
}