Last active
December 20, 2015 19:59
-
-
Save adamfairholm/6187443 to your computer and use it in GitHub Desktop.
Fix for recaptcha:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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