From bfb489c9f8df0ed3472d422117582be32e764aca Mon Sep 17 00:00:00 2001 From: mauirixxx Date: Thu, 18 May 2017 01:48:19 -1000 Subject: [PATCH] removed extra line breaks --- gw-pull.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gw-pull.php b/gw-pull.php index e5f5a79..8ae7057 100644 --- a/gw-pull.php +++ b/gw-pull.php @@ -13,15 +13,15 @@ if (mysqli_num_rows($result) > 0) { while ($row = $result->fetch_array()){ echo 'On ' . $row['historydate'] . ', "' . $row['charname'] . '" got ' . $row['goldrec'] . 'GP and '; if ($row['itemtype'] == "Rune") { - echo 'a ' . $row['itemtype'] . ' of ' . $row['runetype'] . '!
'; + echo 'a ' . $row['itemtype'] . ' of ' . $row['runetype']; } else { if (is_null($row['material'])) { - echo 'a ' . $row['itemrarity'] . ' r' . $row['itemreq'] . ' ' . $row['itemattribute'] . ' ' . $row['itemtype'] . ' named something stupid
'; + echo 'a ' . $row['itemrarity'] . ' r' . $row['itemreq'] . ' ' . $row['itemattribute'] . ' ' . $row['itemtype'] . ' named something stupid'; } else { - echo 'a ' . $row['material'] . '!
'; + echo 'a ' . $row['material']; } } - echo ' at (insert SQL code here)
'; + echo ' at (insert SQL code here)
!'; } } else { echo 'no data to display for that character';