Skip to content

Commit

Permalink
Fix: Inline login form caption not saved
Browse files Browse the repository at this point in the history
  • Loading branch information
SchlesserClaude committed May 29, 2017
1 parent 79f09d9 commit 043f597
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
class sociallogin_acp_module
{
// Version
const USER_AGENT = 'SocialLogin/2.7 phpBB/3.1.x (+http://www.oneall.com/)';
const USER_AGENT = 'SocialLogin/2.8 phpBB/3.1.x (+http://www.oneall.com/)';

// @var \phpbb\config\config
protected $config;
Expand Down Expand Up @@ -225,7 +225,7 @@ public function admin_main ()

// Login page inline, default 1.
$oa_social_login_inline_page_disable = (($request->variable ('oa_social_login_inline_page_disable', 0) == 1) ? 1 : 0);
$oa_social_login_linline_page_caption = $request->variable ('oa_social_login_inline_page_caption', '', true);
$oa_social_login_inline_page_caption = $request->variable ('oa_social_login_inline_page_caption', '', true);

// Registration page, default 1.
$oa_social_login_registration_page_disable = (($request->variable ('oa_social_login_registration_page_disable', 0) == 1) ? 1 : 0);
Expand Down

0 comments on commit 043f597

Please sign in to comment.