We have moved to Github. Please open tickets there.

Opened 4 years ago

Closed 3 years ago

#1751 closed Defect (wontfix)

OpenID show on custom index mini bugfix

Reported by: lungkao Owned by: kevin
Priority: normal Milestone:
Component: Version:
Severity: minor Keywords:
Cc: brettp Difficulty:

Description

fix file /mod/openid_client/views/default/openid_client/forms/login.php

<div id="login-box">
    <form action="<?php echo $vars['url']; ?>mod/openid_client/actions/login.php" method="post">
                            <input type="hidden" name="passthru_url" value="http://<?php echo $_SERVER['HTTP_HOST']. $_SERVER['REQUEST_URI'] ?>" />
        <h2><?php echo elgg_echo('openid_client_login_title'); ?></h2>
            <style>
				input.openid_login {
				background: url(<?php echo $vars['url']; ?>mod/openid_client/login-bg.gif) no-repeat;
				background-color: #fff;
				background-position: 0 50%;
				color: #000;
				width: 160px;
				}
			</style>

newedit move line 18 openid title to line 16 after <div id="login-box">

<div id="login-box">        
<h2><?php echo elgg_echo('openid_client_login_title'); ?></h2>
    <form action="<?php echo $vars['url']; ?>mod/openid_client/actions/login.php" method="post">
                            <input type="hidden" name="passthru_url" value="http://<?php echo $_SERVER['HTTP_HOST']. $_SERVER['REQUEST_URI'] ?>" />

            <style>
				input.openid_login {
				background: url(<?php echo $vars['url']; ?>mod/openid_client/login-bg.gif) no-repeat;
				background-color: #fff;
				background-position: 0 50%;
				color: #000;
				width: 160px;
				}
			</style>

Attachments (1)

6-3-2552 2-27-06.jpg (25.8 KB) - added by lungkao 4 years ago.

Download all attachments as: .zip

Change History (2)

Changed 4 years ago by lungkao

comment:1 Changed 3 years ago by dave

  • Resolution set to wontfix
  • Severity set to minor
  • Status changed from new to closed

Thanks for the patch but we are know longer maintaining this plugin. Perhaps you would like to take over its development?

Note: See TracTickets for help on using tickets.