cosmetics

This commit is contained in:
following 2013-02-18 22:01:40 +01:00
parent 6fbcd4161a
commit 051e60a1ba
7 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@
* Unicode Reminder メモ
***************************************************************************/
$verifyemail = true;
$disable_verifyemail = true;
require('./lib2/web.inc.php');
$email = isset($_REQUEST['email']) ? trim($_REQUEST['email']) : '';

View File

@ -98,7 +98,7 @@ function __autoload($class_name)
// check for email address problems
// use direct database access instead of user class for performance reasons - need not
// to include user.class.php in any script
if (!isset($verifyemail) &&
if (!isset($disable_verifyemail) &&
$login->userid > 0 &&
sql_value("SELECT `email_problems` FROM `user` WHERE `user_id`='&1'", 0, $login->userid) != 0)
{

View File

@ -7,7 +7,7 @@
* Display some status information about the server and Opencaching
***************************************************************************/
$verifyemail = true;
$disable_verifyemail = true;
require('./lib2/web.inc.php');
$tpl->name = 'login';
$tpl->menuitem = MNU_LOGIN;

View File

@ -7,7 +7,7 @@
* Display some status information about the server and Opencaching
***************************************************************************/
$verifyemail = true;
$disable_verifyemail = true;
require('./lib2/web.inc.php');
require_once('./lib2/logic/user.class.php');
$tpl->name = 'newemail';

View File

@ -7,7 +7,7 @@
* Display some status information about the server and Opencaching
***************************************************************************/
$verifyemail = true;
$disable_verifyemail = true;
require('./lib2/web.inc.php');
require_once('./lib2/logic/user.class.php');
$tpl->name = 'newpw';

View File

@ -295,7 +295,7 @@
© $USERNAME, www.opencaching.de, CC-BY-NC-ND, Stand: $DATUM
</p>
<p>
zu verwenden ist, wobei das Datum sich auf den Abrufzeitpunkt von www.opencaching.de bezieht. Bei Fotos und Logeintr&auml;gen kann vom Datum abgesehen werden.
zu verwenden, wobei das Datum sich auf den Abrufzeitpunkt von www.opencaching.de bezieht. Bei Fotos und Logeintr&auml;gen kann vom Datum abgesehen werden.
<br />
<br />
Weitere Erläuterungen zur Datenlizenz gibt es im <a href="http://wiki.opencaching.de/index.php/Datenlizenz" target="_blank">Wiki</a>.</p>

View File

@ -5,7 +5,7 @@
* Unicode Reminder メモ
***************************************************************************/
$verifyemail = true;
$disable_verifyemail = true;
require_once('lib2/web.inc.php');
require_once('lib2/logic/user.class.php');
require_once('lib2/logic/useroptions.class.php');