xmlify the login credentials - just in case

This commit is contained in:
friendica 2012-03-01 15:48:58 -08:00
parent 7b86f5babe
commit 213f7f9e03
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -161,8 +161,8 @@ function wppost_send(&$a,&$b) {
return;
$wp_username = get_pconfig($b['uid'],'wppost','wp_username');
$wp_password = get_pconfig($b['uid'],'wppost','wp_password');
$wp_username = xmlify(get_pconfig($b['uid'],'wppost','wp_username'));
$wp_password = xmlify(get_pconfig($b['uid'],'wppost','wp_password'));
$wp_blog = get_pconfig($b['uid'],'wppost','wp_blog');
if($wp_username && $wp_password && $wp_blog) {