소스 검색

forgot a bracket I think

development
mauirixxx 8 년 전
부모
커밋
e5520d88a8
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. +5
    -4
      gw-pull.php

+ 5
- 4
gw-pull.php 파일 보기

@@ -15,10 +15,11 @@ if (mysqli_num_rows($result) > 0) {
if ($row['itemtype'] == "Rune") {
echo 'a ' . $row['itemtype'] . ' of ' . $row['runetype'] . '!<BR />';
} else {
if (is_null($row['material'])) {
echo 'a ' . $row['itemrarity'] . ' req' . $row['itemreq'] . ' ' . $row['itemattribute'] . ' ' . $row['itemtype'] . ' named something stupid <BR />';
} else {
echo 'a ' . $row['material'] . '!<BR />';
if (is_null($row['material'])) {
echo 'a ' . $row['itemrarity'] . ' req' . $row['itemreq'] . ' ' . $row['itemattribute'] . ' ' . $row['itemtype'] . ' named something stupid <BR />';
} else {
echo 'a ' . $row['material'] . '!<BR />';
}
} //add another else statement to cover RUNES here. or up there.
}
} else {


불러오는 중...
취소
저장