Actually skip the pingback if XML-RPC extension is missing, instead of considering it then trying anyway and dying of a fatal error. :)

This commit is contained in:
Brion Vibber 2010-01-12 12:12:31 -08:00
parent cbc3c7b141
commit 9c34d5c107
1 changed files with 1 additions and 0 deletions

View File

@ -126,6 +126,7 @@ class LinkbackPlugin extends Plugin
if (!extension_loaded('xmlrpc')) {
if (!dl('xmlrpc.so')) {
common_log(LOG_ERR, "Can't pingback; xmlrpc extension not available.");
return;
}
}