Skip to content

Instantly share code, notes, and snippets.

@adamfairholm
Last active December 20, 2015 19:59
Show Gist options
  • Save adamfairholm/6187443 to your computer and use it in GitHub Desktop.
Save adamfairholm/6187443 to your computer and use it in GitHub Desktop.
Fix for recaptcha:
In the streams/plugin.php file, find this line in the form() function (around line 760):
if ($recaptcha)
Under that, you should see:
$this->recaptcha->_rConfig['theme'] = $this->streams_attribute('recaptcha_theme', 'red');
Just above that line, add:
$this->load->library('streams_core/recaptcha');
This should solve the error.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment