Project

General

Profile

Actions

Bug / Feature #1528

closed

Password-Reset wird auf Anmelde-Seite nicht verlinkt

Added by danilo over 12 years ago. Updated over 11 years ago.

Status:
Closed
Priority:
Low
Assignee:
Category:
-
Target version:
-
Start date:
24 August 2011
Due date:
12 March 2013
% Done:

100%

Estimated time:
Request Type:
Bug Report

Description

Auf der Login-Seite von Drupal ist keine Spur vom Password-Reset-Formular.

Actions #1

Updated by Apophis over 12 years ago

  • Priority changed from Normal to Low

ACK

Actions #2

Updated by Apophis over 12 years ago

  • Assignee changed from Apophis to LukyLuke

Wüsstest du wie man das lösen kann?

Actions #3

Updated by danilo over 12 years ago

Vermutlich das Template überladen: http://drupal.org/node/19855

Actions #4

Updated by LukyLuke about 12 years ago

  • Assignee changed from LukyLuke to Apophis

Auf die schnelle würde ich auch sagen, dass man da das Template anpassen muss.
Aus dem Link von Danilo und weiteren Seiten müsste das hier bei drupal-6 funktionieren:

template.php

--- template.php        2012-02-04 10:02:55.000000000 +0100
+++ template_new.php    2012-02-04 11:14:23.372700851 +0100
@@ -140,9 +140,18 @@
                'arguments' => array('menu' => NULL)
        );

+       $hooks['user_login'] = array(
+               'template' => 'templates/user_login',
+               'arguments' => array('form' => NULL),
+       );
+
        return $hooks;
 }

+function mytheme_preprocess_user_login(&$variables) {
+       $variables['remember_pass'] = t('Remember Password');
+       $variables['remember_link'] = 'https://xxxxx';
+       $variables['rendered'] = drupal_render($variables['form']);
+}

 /**
  * Override or insert variables into the comment templates.

user_login.tpl.php

    <?php print $rendered; ?>
    <br/>
    <a href="<?php print $remember_link; ?>"><?php print $remember_pass; ?></a>

Actions #5

Updated by Apophis about 12 years ago

  • Assignee changed from Apophis to corvus
Actions #6

Updated by Apophis over 11 years ago

  • Status changed from New to 15

werden wir in D6 nicht mehr fixen.

Actions #7

Updated by admin over 11 years ago

  • Due date set to 12 March 2013

Automatically enforce due date for Low Priority after 60 days in the future

Actions #8

Updated by Apophis over 11 years ago

  • Status changed from Needs Work to Won't Do
Actions #9

Updated by admin over 11 years ago

  • Assignee changed from corvus to danilo

Automaticaclly enforce assigned-to to the author of the ticket

Actions #10

Updated by danilo over 11 years ago

  • Status changed from Won't Do to Closed
  • % Done changed from 0 to 100
Actions

Also available in: Atom PDF