mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 03:18:48 +00:00
Update function calls
update function calls to new names
This commit is contained in:
parent
1a2b0b2565
commit
7f1fda43ae
7 changed files with 17 additions and 17 deletions
|
@ -218,7 +218,7 @@ function wppost_send(&$a,&$b) {
|
|||
}
|
||||
|
||||
$wp_username = XML::(PConfig::get($b['uid'], 'wppost', 'wp_username'));
|
||||
$wp_password = XML::xmlify(PConfig::get($b['uid'], 'wppost',' wp_password'));
|
||||
$wp_password = XML::escape(PConfig::get($b['uid'], 'wppost',' wp_password'));
|
||||
$wp_blog = PConfig::get($b['uid'],'wppost','wp_blog');
|
||||
$wp_backlink_text = PConfig::get($b['uid'],'wppost','wp_backlink_text');
|
||||
if ($wp_backlink_text == '') {
|
||||
|
@ -295,7 +295,7 @@ function wppost_send(&$a,&$b) {
|
|||
. $wp_backlink_text . '</a>' . EOL . EOL;
|
||||
}
|
||||
|
||||
$post = XML::xmlify($post);
|
||||
$post = XML::escape($post);
|
||||
|
||||
|
||||
$xml = <<< EOT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue