xmlify the login credentials - just in case
This commit is contained in:
parent
7b86f5babe
commit
213f7f9e03
2 changed files with 2 additions and 2 deletions
BIN
wppost.tgz
BIN
wppost.tgz
Binary file not shown.
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue