forked from blallo/rss-bridge
Fix duplicate https://www.facebook.com/
on captcha_action POST URL (#466)
This commit is contained in:
parent
49cc0661ad
commit
1028e538ab
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ class FacebookBridge extends BridgeAbstract{
|
|||
foreach ($captcha->find('input, button') as $input)
|
||||
$captcha_fields[$input->name] = $input->value;
|
||||
$_SESSION['captcha_fields'] = $captcha_fields;
|
||||
$_SESSION['captcha_action'] = self::URI.$captcha->find('form', 0)->action;
|
||||
$_SESSION['captcha_action'] = $captcha->find('form', 0)->action;
|
||||
|
||||
//Show captcha filling form to the viewer, proxying the captcha image
|
||||
$img = base64_encode(getContents($captcha->find('img', 0)->src));
|
||||
|
|
Loading…
Reference in a new issue