Janrain Capture UI: Inconsistent Backplane Names
-
Problem
janrain-capture-ui.php
is currently using the incorrect option key for getting values relating to Janrain Backplane. More specifically, backplane enabled flag as well as backplane bus name.LINE 31:
–if ( JanrainCapture::get_option( JanrainCapture::$name . '_widget_bp_enabled' ) > 0 ) {
Should be:
–if ( JanrainCapture::get_option( JanrainCapture::$name . '_widget_backplane_enabled' ) > 0 ) {
LINE 620:
$bus = JanrainCapture::get_option( JanrainCapture::$name . '_bp_bus_name' );
should be
$bus = JanrainCapture::get_option( JanrainCapture::$name . '_widget_bp_bus_name' );
The following fix will resolve the backplane javascript library from properly loading in the head tag for immediate reference for any services that use the protocol.
Discussion
This is an essential piece of the service. As such, it leads me to believe this feature was not fully fleshed out for support. I will be creating a separate forum for this discussion as well as a Janrain support ticket. I will stress though that the above should be fixed before continuing resolving other issues involving backplane.
- The topic ‘Janrain Capture UI: Inconsistent Backplane Names’ is closed to new replies.