From 1aa2f7a87795c2cf115bf329d214c5c63719f97f Mon Sep 17 00:00:00 2001 From: Greg Frost Date: Wed, 1 Jul 2009 13:46:12 +0930 Subject: php: apply fix as per FS#377 --- abs/core-testing/php/php.install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abs/core-testing/php/php.install b/abs/core-testing/php/php.install index ba55b54..3d6093f 100644 --- a/abs/core-testing/php/php.install +++ b/abs/core-testing/php/php.install @@ -4,7 +4,7 @@ post_install() { . /etc/systemconfig if [ -f /etc/php/php.ini ] then - sed -i "s/^;date.timezone.*$/date.timezone=${timezone}/" /etc/php/php.ini + sed -i 's/^.*date.timezone.*$/date.timezone='${timezone}'/' /etc/php/php.ini fi fi } @@ -40,7 +40,7 @@ post_upgrade() { . /etc/systemconfig if [ -f /etc/php/php.ini ] then - sed -i "s/^;date.timezone.*$/date.timezone=${timezone}/" /etc/php/php.ini + sed -i 's/^.*date.timezone.*$/date.timezone='${timezone}'/' /etc/php/php.ini fi fi echo 'Updating extension dir...' -- cgit v0.12