瀏覽代碼

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 {


Loading…
取消
儲存