From dcffb2723ac2c80475c196e2f1b5e07affcdf78a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 17 Sep 2007 04:18:28 +0100 Subject: urlencode login/pass before passing them to Magpie (closes #153) --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 362f965a4..66fda3936 100644 --- a/functions.php +++ b/functions.php @@ -442,8 +442,8 @@ return; } - $auth_login = db_fetch_result($result, 0, "auth_login"); - $auth_pass = db_fetch_result($result, 0, "auth_pass"); + $auth_login = urlencode(db_fetch_result($result, 0, "auth_login")); + $auth_pass = urlencode(db_fetch_result($result, 0, "auth_pass")); $update_interval = db_fetch_result($result, 0, "update_interval"); $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images")); -- cgit v1.2.3-54-g00ecf