]> git.mxchange.org Git - friendica.git/blobdiff - mod/lostpass.php
Fix formatting in mod/settings
[friendica.git] / mod / lostpass.php
index e7e1a33bd02b22d72c90d621cd2d50656638f127..b3304fda12bba312b3149025bb21f3f8c76b2107 100644 (file)
@@ -1,11 +1,13 @@
 <?php
-
+/**
+ * @file mod/lostpass.php
+ */
 use Friendica\App;
 use Friendica\Core\System;
+use Friendica\Database\DBM;
 
-require_once('include/email.php');
-require_once('include/enotify.php');
-require_once('include/text.php');
+require_once 'include/enotify.php';
+require_once 'include/text.php';
 
 function lostpass_post(App $a) {
 
@@ -18,7 +20,7 @@ function lostpass_post(App $a) {
                dbesc($loginame)
        );
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                notice( t('No valid account found.') . EOL);
                goaway(System::baseUrl());
        }
@@ -90,7 +92,7 @@ function lostpass_content(App $a) {
                $r = q("SELECT * FROM `user` WHERE `pwdreset` = '%s' LIMIT 1",
                        dbesc($hash)
                );
-               if (! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        $o =  t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.");
                        return $o;
                }
@@ -106,7 +108,7 @@ function lostpass_content(App $a) {
                        intval($uid)
                );
 
-               /// @TODO Is dbm::is_result() okay here?
+               /// @TODO Is DBM::is_result() okay here?
                if ($r) {
                        $tpl = get_markup_template('pwdreset.tpl');
                        $o .= replace_macros($tpl,array(