Merge branch 'master', remote-tracking branch 'remotes/upstream/master'

* remotes/upstream/master:
  xmlify the login credentials - just in case

* master:
This commit is contained in:
Simon L'nu 2012-03-02 05:22:50 -05:00
commit 47429a3b58
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) {