escape slash in regexp

This commit is contained in:
Evan Prodromou 2009-04-14 16:01:02 -04:00
parent 4684d34713
commit b1940bcb7b
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class LinkbackPlugin extends Plugin
if (array_key_exists('X-Pingback', $result->headers)) {
$pb = $result->headers['X-Pingback'];
} else if (preg_match('/<link rel="pingback" href="([^"]+)" ?/?>/',
} else if (preg_match('/<link rel="pingback" href="([^"]+)" ?\/?>/',
$result->body,
$match)) {
$pb = $match[1];