Giter VIP home page Giter VIP logo

Comments (1)

waldoj avatar waldoj commented on August 25, 2024

Huh. I'm not sure if this ever worked. It's in register.php, where we straight-up test for duplicates by e-mail address

$sql = 'SELECT *
        FROM users
        WHERE email = "' . mysql_real_escape_string($form_data['email']) . '"
        AND password IS NOT NULL';

and issue an error if a match is found. Instead, we should be retrieving the user hash and, if it matches the user hash in the cookie, merge the accounts.

Oh, hey, here's a comment in the code:

# Create a brand-new account. Though it's tempting to merge this new account with
# any existing account data, it's really just more trouble than it's worth.

Huh.

Well, on further reflection, the above SQL is only checking registered accounts (AND password IS NOT NULL), so I think that's working properly. That is, we're not blocking people who have interacted with the site, used their e-mail address, but never created a formal account. I think?

from richmondsunlight.com.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.