diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-02-04 18:14:41 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-02-04 18:38:50 -0200 |
commit | b3cbb077293ab439b63ef08103dfee4e066b56cd (patch) | |
tree | b06581ef32a612707fa4ecdd8576c82fded5e151 /usr/local/www | |
parent | af7a83737e694cff2a8fa41147f99a8a9812ff15 (diff) | |
download | pfsense-b3cbb077293ab439b63ef08103dfee4e066b56cd.zip pfsense-b3cbb077293ab439b63ef08103dfee4e066b56cd.tar.gz |
Fix some wrong escapeshellarg() calls
Conflicts:
etc/inc/filter_log.inc
etc/inc/pkg-utils.inc
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/diag_smart.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/diag_smart.php b/usr/local/www/diag_smart.php index 73f3405..d2309e6 100644 --- a/usr/local/www/diag_smart.php +++ b/usr/local/www/diag_smart.php @@ -85,7 +85,7 @@ function update_email($email) if(!empty($email)) { // Put it in the smartd.conf file - shell_exec("/usr/bin/sed -i old 's/^DEVICESCAN.*/DEVICESCAN -H -m " . escapeshellarg($email) . "/' /usr/local/etc/smartd.conf"); + shell_exec("/usr/bin/sed -i old 's/^DEVICESCAN.*/DEVICESCAN -H -m " . $email . "/' /usr/local/etc/smartd.conf"); } // Nope else |