Skip to content

Commit 9f44d79

Browse files
committed
Fixes May #1
1 parent b6b5224 commit 9f44d79

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

classes/member.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ function select($memberID) {
7070

7171
}
7272

73-
function authorizeLogin($check_password, $convertMD5=0) {
73+
function authorizeLogin($check_password, $encryptPW=0) {
7474

7575
$checkRealPassword = $this->arrObjInfo['password'];
7676
$checkRealPassword2 = $this->arrObjInfo['password2'];
7777

78-
if($convertMD5 == 1) {
78+
if($encryptPW == 1) {
7979

8080
$checkPass = crypt($check_password, $checkRealPassword2);
8181

forum/templates/post.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
123123
124124
</div>
125+
<div class='forumPostNewSection'></div>
125126
<div class='forumPostPosterInfo'></div>
126127
<div class='forumPostMessageExtras'>
127128
";

members/include/forum/managemoderators.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848

4949
$boardOptions = "<option value='select'>[SELECT]</option>";
50-
$result = $mysqli->query("SELECT forumcategory_id FROM forum_category ORDER BY ordernum DESC");
50+
$result = $mysqli->query("SELECT forumcategory_id FROM ".$dbprefix."forum_category ORDER BY ordernum DESC");
5151
while($row = $result->fetch_assoc()) {
5252

5353

0 commit comments

Comments
 (0)