Passed
Push — master ( 6c7326...d5cd69 )
by Saepul
04:21
created
modul/mod_obat/obat.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
             while ($r = mysql_fetch_array($tampil)) {
57 57
                 $jumlah = number_format($r[jumlah], 0, '', '.');
58
-                $kadaluwarsa = ($r[kadaluwarsa] != '') ? date('d/m/Y', strtotime($r[kadaluwarsa])) : '-';
58
+                $kadaluwarsa = ($r[kadaluwarsa]!='') ? date('d/m/Y', strtotime($r[kadaluwarsa])) : '-';
59 59
 
60 60
                 echo'<tr>';
61 61
                 echo"<td>$r[obat]</td>";
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
                 echo"<td style='text-align:center;'>$r[aktif]</td>";
66 66
                 echo" <td  style='text-align:center;'>";
67 67
 
68
-                if ($r_edit == 'Y') {
68
+                if ($r_edit=='Y') {
69 69
                     echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_obat=$r[id_obat]&id_module=$id&width=720&height=560&module=$module&TB_iframe=true' title='Update $nmmodule'><span class='icon'><i class='fa fa-pencil'></i></span></a>";
70 70
                 }
71 71
 
Please login to merge, or discard this patch.