Passed
Pull Request — master (#7)
by Saepul
10:41 queued 06:17
created
modul/mod_report_pengeluaran_obat/print_report_pengeluaran_obat.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 
167 167
 <?php
168 168
 $gtampil = mysql_query("SELECT * FROM informasi_perusahaan where id_informasi_perusahaan = '1'");
169
- $g = mysql_fetch_array($gtampil);
169
+    $g = mysql_fetch_array($gtampil);
170 170
 
171 171
 if ($g['pict']) {
172 172
     $pict = $g['pict'];
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                             
211 211
                          <?php
212 212
 
213
-             $tampil = mysql_query("SELECT b.obat
213
+                $tampil = mysql_query("SELECT b.obat
214 214
                                   , c.satuan
215 215
                                   , sum(a.qty) as jumlah
216 216
                                 FROM kunjungan_berobat h inner join kunjungan_berobat_detail  a 
Please login to merge, or discard this patch.
modul/mod_general_setting/form_general_setting.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -371,11 +371,11 @@
 block discarded – undo
371 371
         <!-- /editor -->
372 372
 
373 373
          <?php 
374
-         if (empty($pict)) {
375
-             $ipict = 'logo.png';
376
-         } else {
377
-             $ipict = $pict;
378
-         } ?>
374
+            if (empty($pict)) {
375
+                $ipict = 'logo.png';
376
+            } else {
377
+                $ipict = $pict;
378
+            } ?>
379 379
 
380 380
         <script>
381 381
           var btnCust = '<button type="button" class="btn btn-default" title="Add picture tags" ' + 
Please login to merge, or discard this patch.
modul/mod_kasir/form_list_pemesanan.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
         <?php
257 257
 
258 258
 
259
-      $SQL = "SELECT p.tanggal,a.*,c.id_unit_barang,c.unit_barang,b.kode as kode_bar,b.barang
259
+        $SQL = "SELECT p.tanggal,a.*,c.id_unit_barang,c.unit_barang,b.kode as kode_bar,b.barang
260 260
 
261 261
                   ,a.qty-a.qty_ps as iqty, b.id_merk, b.id_barang
262 262
                   ,ifnull((SELECT sum(saldo_akhir)
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
     while ($r = mysql_fetch_array($tampil)) {
316 316
 
317
-          //selectPR(no_pr,id_permintaan_barang_detail,ibarang,id_barang,unit_barang,iqty,qty)
317
+            //selectPR(no_pr,id_permintaan_barang_detail,ibarang,id_barang,unit_barang,iqty,qty)
318 318
 
319 319
         $hsql = mysql_query("SELECT harga as last_price 
320 320
                                 FROM pemesanan_barang_detail
Please login to merge, or discard this patch.
modul/mod_kasir/ecetak_kasir.php 1 patch
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -49,37 +49,37 @@  discard block
 block discarded – undo
49 49
   
50 50
       <?php
51 51
 
52
-       $gtampil = mysql_query("SELECT * FROM informasi_perusahaan where id_informasi_perusahaan = '1'");
52
+        $gtampil = mysql_query("SELECT * FROM informasi_perusahaan where id_informasi_perusahaan = '1'");
53 53
 
54
-       $g = mysql_fetch_array($gtampil);
54
+        $g = mysql_fetch_array($gtampil);
55 55
 
56
-      if ($g['pict']) {
57
-          $pict = $g['pict'];
58
-      } else {
59
-          $pict = '';
60
-      }
56
+        if ($g['pict']) {
57
+            $pict = $g['pict'];
58
+        } else {
59
+            $pict = '';
60
+        }
61 61
 
62
-      $company = ucwords($g['company']);
62
+        $company = ucwords($g['company']);
63 63
 
64
-      $sql = mysql_query("SELECT a.*,b.shift FROM kasir  a LEFT JOIN shift b 
64
+        $sql = mysql_query("SELECT a.*,b.shift FROM kasir  a LEFT JOIN shift b 
65 65
                             ON a.id_shift = b.id_shift
66 66
                             WHERE a.id_kasir = '$k_ID' 
67 67
 
68 68
                            ");
69 69
 
70
-      $r = mysql_fetch_array($sql);
70
+        $r = mysql_fetch_array($sql);
71 71
 
72
-      $penjualan_barang = $r['id_kasir'];
72
+        $penjualan_barang = $r['id_kasir'];
73 73
 
74
-      $shift = $r['shift'];
74
+        $shift = $r['shift'];
75 75
 
76
-      $petugas = $r['petugas'];
76
+        $petugas = $r['petugas'];
77 77
 
78
-      $status = $r['status'];
78
+        $status = $r['status'];
79 79
 
80
-      $tanggal = date('d/m/Y', strtotime($r['tanggal']));
80
+        $tanggal = date('d/m/Y', strtotime($r['tanggal']));
81 81
 
82
-      ?>
82
+        ?>
83 83
 
84 84
       <table width="100%">
85 85
       <tr>
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
                 while ($i = mysql_fetch_array($itampil)) {
117 117
                     echo "<th>$i[jenis_transaksi]</th>";
118 118
                 }
119
-               ?>
119
+                ?>
120 120
 
121 121
                <?php
122 122
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
                 while ($i = mysql_fetch_array($itampil)) {
126 126
                     echo "<th>$i[jenis_pembayaran]</th>";
127 127
                 }
128
-               ?>
128
+                ?>
129 129
 
130 130
 
131 131
             </tr> 
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
 
288 288
                 $no++;
289 289
             }
290
-             ?>
290
+                ?>
291 291
              </tbody> 
292 292
 
293 293
              <tfoot>
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
 
301 301
                <?php
302 302
 
303
-                          $itampil = mysql_query("SELECT * FROM jenis_transaksi where aktif = 'Y' ORDER BY id_jenis_transaksi");
303
+                            $itampil = mysql_query("SELECT * FROM jenis_transaksi where aktif = 'Y' ORDER BY id_jenis_transaksi");
304 304
 
305 305
                             while ($i = mysql_fetch_array($itampil)) {
306 306
                                 $jtampil = mysql_query("SELECT sum(b.jumlah) as jumlah FROM kasir a INNER JOIN kasir_detail b 
@@ -325,10 +325,10 @@  discard block
 block discarded – undo
325 325
                 ?>        
326 326
 
327 327
                  <?php
328
-                 $itampil = mysql_query("SELECT * FROM jenis_pembayaran where aktif = 'Y' ORDER BY id_jenis_pembayaran");
328
+                    $itampil = mysql_query("SELECT * FROM jenis_pembayaran where aktif = 'Y' ORDER BY id_jenis_pembayaran");
329 329
 
330
-                  while ($i = mysql_fetch_array($itampil)) {
331
-                      $pSQL = "SELECT  sum(a.jumlah) as jumlah 
330
+                    while ($i = mysql_fetch_array($itampil)) {
331
+                        $pSQL = "SELECT  sum(a.jumlah) as jumlah 
332 332
 
333 333
                            FROM kasir_detail a LEFT JOIN jenis_transaksi b
334 334
 
@@ -356,20 +356,20 @@  discard block
 block discarded – undo
356 356
 
357 357
                            ";
358 358
 
359
-                      $ptampil = mysql_query($pSQL);
359
+                        $ptampil = mysql_query($pSQL);
360 360
 
361
-                      $p = mysql_fetch_array($ptampil);
361
+                        $p = mysql_fetch_array($ptampil);
362 362
 
363
-                      if ($p[jumlah]) {
364
-                          $jml = number_format($p['jumlah'], 0, '.', ',');
365
-                      } else {
366
-                          $jml = 0;
367
-                      }
363
+                        if ($p[jumlah]) {
364
+                            $jml = number_format($p['jumlah'], 0, '.', ',');
365
+                        } else {
366
+                            $jml = 0;
367
+                        }
368 368
 
369
-                      echo"<th  style='text-align:right;'>$jml </th>";
370
-                  }
369
+                        echo"<th  style='text-align:right;'>$jml </th>";
370
+                    }
371 371
 
372
-               ?> 
372
+                ?> 
373 373
        
374 374
                <th></th> 
375 375
 
@@ -389,16 +389,16 @@  discard block
 block discarded – undo
389 389
 
390 390
             <?php 
391 391
 
392
-                 if ($r[id_shift] == '1') {
393
-                     $id_shift = '1';
394
-                 } else {
395
-                     $id_shift = '%';
396
-                 }
392
+                    if ($r[id_shift] == '1') {
393
+                        $id_shift = '1';
394
+                    } else {
395
+                        $id_shift = '%';
396
+                    }
397 397
 
398
-                 $itampil = mysql_query("SELECT * FROM shift where aktif = 'Y' and id_shift LIKE '$id_shift' ORDER BY id_shift");
398
+                    $itampil = mysql_query("SELECT * FROM shift where aktif = 'Y' and id_shift LIKE '$id_shift' ORDER BY id_shift");
399 399
 
400
-                  while ($i = mysql_fetch_array($itampil)) {
401
-                      $shift = $i['shift']; ?>       
400
+                    while ($i = mysql_fetch_array($itampil)) {
401
+                        $shift = $i['shift']; ?>       
402 402
 
403 403
                     <tr>
404 404
                     <th></th>
@@ -437,15 +437,15 @@  discard block
 block discarded – undo
437 437
 
438 438
                            ";
439 439
 
440
-                      $ptampil = mysql_query($pSQL);
440
+                        $ptampil = mysql_query($pSQL);
441 441
 
442
-                      $p = mysql_fetch_array($ptampil);
442
+                        $p = mysql_fetch_array($ptampil);
443 443
 
444
-                      if ($p[jumlah]) {
445
-                          $cash = number_format($p['jumlah'], 0, '.', ',');
446
-                      } else {
447
-                          $cash = 0;
448
-                      } ?>
444
+                        if ($p[jumlah]) {
445
+                            $cash = number_format($p['jumlah'], 0, '.', ',');
446
+                        } else {
447
+                            $cash = 0;
448
+                        } ?>
449 449
                     <th style="text-align: right;"><?=$cash; ?></th>
450 450
                     <th style="text-align: left;">Credit</th>
451 451
 
@@ -480,15 +480,15 @@  discard block
 block discarded – undo
480 480
 
481 481
                            ";
482 482
 
483
-                      $ptampil = mysql_query($pSQL);
483
+                        $ptampil = mysql_query($pSQL);
484 484
 
485
-                      $p = mysql_fetch_array($ptampil);
485
+                        $p = mysql_fetch_array($ptampil);
486 486
 
487
-                      if ($p[jumlah]) {
488
-                          $credit = number_format($p['jumlah'], 0, '.', ',');
489
-                      } else {
490
-                          $credit = 0;
491
-                      } ?>
487
+                        if ($p[jumlah]) {
488
+                            $credit = number_format($p['jumlah'], 0, '.', ',');
489
+                        } else {
490
+                            $credit = 0;
491
+                        } ?>
492 492
 
493 493
                     <th style="text-align: right;"><?=$credit; ?></th>
494 494
                     <th colspan="4"></th>
@@ -496,12 +496,12 @@  discard block
 block discarded – undo
496 496
 
497 497
 
498 498
                <?php
499
-                  }
499
+                    }
500 500
 
501
-               ?> 
501
+                ?> 
502 502
 
503 503
                <?php if ($id_shift == '%') {
504
-                   ?>
504
+                    ?>
505 505
                <tr>
506 506
                     <th></th>
507 507
                     <th></th>
@@ -537,15 +537,15 @@  discard block
 block discarded – undo
537 537
 
538 538
                            ";
539 539
 
540
-                   $ptampil = mysql_query($pSQL);
540
+                    $ptampil = mysql_query($pSQL);
541 541
 
542
-                   $p = mysql_fetch_array($ptampil);
542
+                    $p = mysql_fetch_array($ptampil);
543 543
 
544
-                   if ($p[jumlah]) {
545
-                       $cash = number_format($p['jumlah'], 0, '.', ',');
546
-                   } else {
547
-                       $cash = 0;
548
-                   } ?>
544
+                    if ($p[jumlah]) {
545
+                        $cash = number_format($p['jumlah'], 0, '.', ',');
546
+                    } else {
547
+                        $cash = 0;
548
+                    } ?>
549 549
                     <th style="text-align: right;"><?=$cash; ?></th>
550 550
                     <th style="text-align: left;">Credit</th>
551 551
 
@@ -578,22 +578,22 @@  discard block
 block discarded – undo
578 578
 
579 579
                            ";
580 580
 
581
-                   $ptampil = mysql_query($pSQL);
581
+                    $ptampil = mysql_query($pSQL);
582 582
 
583
-                   $p = mysql_fetch_array($ptampil);
583
+                    $p = mysql_fetch_array($ptampil);
584 584
 
585
-                   if ($p[jumlah]) {
586
-                       $credit = number_format($p['jumlah'], 0, '.', ',');
587
-                   } else {
588
-                       $credit = 0;
589
-                   } ?>
585
+                    if ($p[jumlah]) {
586
+                        $credit = number_format($p['jumlah'], 0, '.', ',');
587
+                    } else {
588
+                        $credit = 0;
589
+                    } ?>
590 590
 
591 591
                     <th style="text-align: right;"><?=$credit; ?></th>
592 592
                     <th colspan="4"></th>
593 593
                     </tr> 
594 594
 
595 595
                 <?php
596
-               } ?>
596
+                } ?>
597 597
 
598 598
                  <tr><td colspan="12">&nbsp</td></tr>  
599 599
 
@@ -644,13 +644,13 @@  discard block
 block discarded – undo
644 644
 
645 645
                         $p = mysql_fetch_array($ptampil);
646 646
 
647
-                             if ($p[jumlah]) {
648
-                                 $total = number_format($p['jumlah'], 0, '.', ',');
649
-                             } else {
650
-                                 $total = 0;
651
-                             }
647
+                                if ($p[jumlah]) {
648
+                                    $total = number_format($p['jumlah'], 0, '.', ',');
649
+                                } else {
650
+                                    $total = 0;
651
+                                }
652 652
 
653
-              ?>
653
+                ?>
654 654
 
655 655
 
656 656
                 <tr>
Please login to merge, or discard this patch.
modul/mod_report_rujukan_pasien/print_report_rujukan_pasien.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
 
167 167
 <?php
168 168
 $gtampil = mysql_query("SELECT * FROM informasi_perusahaan where id_informasi_perusahaan = '1'");
169
- $g = mysql_fetch_array($gtampil);
169
+    $g = mysql_fetch_array($gtampil);
170 170
 
171 171
 if ($g['pict']) {
172 172
     $pict = $g['pict'];
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                          <?php
214 214
 
215 215
 
216
-                         $tampil = mysql_query("SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori    
216
+                            $tampil = mysql_query("SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori    
217 217
                                                 ,e.rujukan as rujukan_rs
218 218
                                                 ,f.rujukan as rujukan_lab                              
219 219
                                             FROM kunjungan_berobat a left join pasien b 
Please login to merge, or discard this patch.
modul/mod_user/xform_user.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
                  <select name="groups" class="form-control" required >
122 122
                           <option value=''></option>
123 123
                     <?php
124
-                      $query = mysql_query('SELECT * FROM groups ORDER BY groups');
124
+                        $query = mysql_query('SELECT * FROM groups ORDER BY groups');
125 125
     if ($query && mysql_num_rows($query) > 0) {
126 126
         while ($row = mysql_fetch_object($query)) {
127 127
             echo '<option value="'.$row->id_groups.'"';
Please login to merge, or discard this patch.
modul/mod_user/form_user.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                  <select name="groups" class="form-control" required >
161 161
                           <option value=''></option>
162 162
                     <?php
163
-                      $query = mysql_query('SELECT * FROM groups ORDER BY groups');
163
+                        $query = mysql_query('SELECT * FROM groups ORDER BY groups');
164 164
     if ($query && mysql_num_rows($query) > 0) {
165 165
         while ($row = mysql_fetch_object($query)) {
166 166
             echo '<option value="'.$row->id_groups.'"';
@@ -492,11 +492,11 @@  discard block
 block discarded – undo
492 492
         <!-- /editor -->
493 493
 
494 494
          <?php 
495
-         if (empty($pict)) {
496
-             $ipict = 'male.png';
497
-         } else {
498
-             $ipict = $pict;
499
-         } ?>
495
+            if (empty($pict)) {
496
+                $ipict = 'male.png';
497
+            } else {
498
+                $ipict = $pict;
499
+            } ?>
500 500
 
501 501
         <script>
502 502
           var btnCust = '<button type="button" class="btn btn-default" title="Add picture tags" ' + 
Please login to merge, or discard this patch.
modul/mod_kunjungan_berobat/form_kunjungan_berobat.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                  <select required name="pasien" class="form-control">
92 92
                  <option>--Pilih Pasien--</option>                
93 93
                     <?php
94
-                      $query = mysql_query('SELECT * FROM pasien ORDER BY nama');
94
+                        $query = mysql_query('SELECT * FROM pasien ORDER BY nama');
95 95
     if ($query && mysql_num_rows($query) > 0) {
96 96
         while ($row = mysql_fetch_object($query)) {
97 97
             $pasien = $row->ktp.'-'.$row->nama;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
                  <select name="poli" class="form-control">     
113 113
                  <option>--Pilih Poliklinik --</option>                          
114 114
                     <?php
115
-                      $query = mysql_query('SELECT * FROM poli ORDER BY poli');
115
+                        $query = mysql_query('SELECT * FROM poli ORDER BY poli');
116 116
     if ($query && mysql_num_rows($query) > 0) {
117 117
         while ($row = mysql_fetch_object($query)) {
118 118
             echo '<option value="'.$row->id_poli.'"';
Please login to merge, or discard this patch.
modul/mod_groupmodul/form_groupmodul.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
               <div class="col-md-6 col-sm-6 col-xs-12" >
74 74
                  <select name="igroup" class="form-control" autofocus >
75 75
 				    <?php
76
-                       $query = mysql_query('SELECT * FROM groups ORDER BY groups');
76
+                        $query = mysql_query('SELECT * FROM groups ORDER BY groups');
77 77
     if ($query && mysql_num_rows($query) > 0) {
78 78
         while ($row = mysql_fetch_object($query)) {
79 79
             echo '<option value="'.$row->id_groups.'"';
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     } ?>>
97 97
 				          <option value=''></option>
98 98
 				    <?php
99
-                       $query = mysql_query("SELECT * FROM modul WHERE status_menu = 'M' AND aktif = 'Y' ORDER BY urutan ASC");
99
+                        $query = mysql_query("SELECT * FROM modul WHERE status_menu = 'M' AND aktif = 'Y' ORDER BY urutan ASC");
100 100
     if ($query && mysql_num_rows($query) > 0) {
101 101
         while ($row = mysql_fetch_object($query)) {
102 102
             echo '<option value="'.$row->id_modul.'"';
@@ -123,13 +123,13 @@  discard block
 block discarded – undo
123 123
               <div class="col-md-6 col-sm-6 col-xs-12" >
124 124
                  <?php
125 125
 
126
-                   $iquery = mysql_query("SELECT * FROM modul WHERE status_menu = 'C' AND aktif = 'Y' AND parentid= '$imenu' ORDER BY urutan ASC");
126
+                    $iquery = mysql_query("SELECT * FROM modul WHERE status_menu = 'C' AND aktif = 'Y' AND parentid= '$imenu' ORDER BY urutan ASC");
127 127
     $irow = mysql_fetch_object($iquery); ?>     
128 128
 				      
129 129
 				        <?php 
130
-                           //echo"<div id='iframe'>";
131
-                         if ($id) {
132
-                             $query = mysql_query("SELECT DISTINCT a.*
130
+                            //echo"<div id='iframe'>";
131
+                            if ($id) {
132
+                                $query = mysql_query("SELECT DISTINCT a.*
133 133
 				                       ,CASE WHEN ifnull(b.id_groupmodul,0) = '0' THEN 0 ELSE 1 END as flag
134 134
 				                        FROM modul a left join groupmodul b
135 135
 				                        ON b.id_groups = '$group'
@@ -137,38 +137,38 @@  discard block
 block discarded – undo
137 137
 				                          WHERE a.status_menu = 'C' AND a.aktif = 'Y' AND a.parentid = '$imenu'
138 138
 				                        ORDER BY a.urutan ASC");
139 139
 
140
-                             if ($query && mysql_num_rows($query) > 0) {
141
-                                 $no = 1;
142
-                                 while ($row = mysql_fetch_object($query)) {
143
-                                     $status = $row->status_menu;
140
+                                if ($query && mysql_num_rows($query) > 0) {
141
+                                    $no = 1;
142
+                                    while ($row = mysql_fetch_object($query)) {
143
+                                        $status = $row->status_menu;
144 144
 
145
-                                     if ($row->flag == '1') {
146
-                                         echo"<input checked type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>";
147
-                                     } else {
148
-                                         echo"<input type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>";
149
-                                     }
145
+                                        if ($row->flag == '1') {
146
+                                            echo"<input checked type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>";
147
+                                        } else {
148
+                                            echo"<input type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>";
149
+                                        }
150 150
 
151
-                                     echo"<input type='hidden' name='modul".$no."' value='".$row->id_modul."'>".$row->nama_modul.'</br>';
151
+                                        echo"<input type='hidden' name='modul".$no."' value='".$row->id_modul."'>".$row->nama_modul.'</br>';
152 152
 
153
-                                     $no++;
154
-                                 }
155
-                             }
156
-                         } else {
157
-                             $query = mysql_query("SELECT * FROM modul WHERE status_menu = 'C' AND aktif = 'Y' AND parentid= '$imenu' ORDER BY urutan ASC");
153
+                                        $no++;
154
+                                    }
155
+                                }
156
+                            } else {
157
+                                $query = mysql_query("SELECT * FROM modul WHERE status_menu = 'C' AND aktif = 'Y' AND parentid= '$imenu' ORDER BY urutan ASC");
158 158
 
159
-                             if ($query && mysql_num_rows($query) > 0) {
160
-                                 $no = 1;
161
-                                 while ($row = mysql_fetch_object($query)) {
162
-                                     $status = $row->status_menu;
159
+                                if ($query && mysql_num_rows($query) > 0) {
160
+                                    $no = 1;
161
+                                    while ($row = mysql_fetch_object($query)) {
162
+                                        $status = $row->status_menu;
163 163
 
164
-                                     echo"<input checked type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>
164
+                                        echo"<input checked type='checkbox' value='id".$no."'  name='id".$no."' style='width:12px;'>
165 165
 				              <input type='hidden' name='modul".$no."' value='".$row->id_modul."'>
166 166
 				               ".$row->nama_modul.'</br>';
167 167
 
168
-                                     $no++;
169
-                                 }
170
-                             }
171
-                         }
168
+                                        $no++;
169
+                                    }
170
+                                }
171
+                            }
172 172
     //echo"</div>";
173 173
 
174 174
                     ?>
Please login to merge, or discard this patch.