Passed
Pull Request — master (#7)
by Saepul
06:57 queued 02:15
created
config/functions.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -84,28 +84,28 @@
 block discarded – undo
84 84
     }
85 85
 
86 86
     switch ($size[2]) {
87
-       case 1:       //GIF
87
+        case 1:       //GIF
88 88
            $src = imagecreatefromgif($srcFile);
89
-           break;
90
-       case 2:       //JPEG
89
+            break;
90
+        case 2:       //JPEG
91 91
            $src = imagecreatefromjpeg($srcFile);
92
-           break;
93
-       case 3:       //PNG
92
+            break;
93
+        case 3:       //PNG
94 94
            $src = imagecreatefrompng($srcFile);
95
-           break;
96
-       default:
95
+            break;
96
+        default:
97 97
            return false;
98
-           break;
98
+            break;
99 99
     }
100 100
 
101 101
     imagecopyresampled($dest, $src, 0, 0, 0, 0, $w, $h, $size[0], $size[1]);
102 102
 
103 103
     switch ($size[2]) {
104
-       case 1:
104
+        case 1:
105 105
        case 2:
106 106
            imagejpeg($dest, $destFile, $quality);
107
-           break;
108
-       case 3:
107
+            break;
108
+        case 3:
109 109
            imagepng($dest, $destFile);
110 110
     }
111 111
 
Please login to merge, or discard this patch.
config/barcode_gen.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     $onChar = 1;
41 41
     for ($x = 0; $x < strlen($text); $x++) {								// GO THRU TEXT GET LETTERS
42 42
     if (!(($pos = strpos($char128asc, $text[$x])) === false)) {	// SKIP NOT FOUND CHARS
43
-      $w .= $char128wid[$pos];
43
+        $w .= $char128wid[$pos];
44 44
         $sum += $onChar++ * $pos;
45 45
     }
46 46
     }
Please login to merge, or discard this patch.
config/bar128.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     $onChar = 1;
41 41
     for ($x = 0; $x < strlen($text); $x++) {								// GO THRU TEXT GET LETTERS
42 42
     if (!(($pos = strpos($char128asc, $text[$x])) === false)) {	// SKIP NOT FOUND CHARS
43
-      $w .= $char128wid[$pos];
43
+        $w .= $char128wid[$pos];
44 44
         $sum += $onChar++ * $pos;
45 45
     }
46 46
     }
Please login to merge, or discard this patch.
modul/mod_rujukan/rujukan.php 1 patch
Switch Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 <?php
3 3
 switch ($_GET[act]) {
4 4
 
5
-default:
6
-  ?>
5
+    default:
6
+      ?>
7 7
 
8 8
  <div class="">
9 9
                    
@@ -44,35 +44,35 @@  discard block
 block discarded – undo
44 44
                             
45 45
                          <?php
46 46
 
47
-            $tampil = mysql_query('SELECT * FROM rujukan ORDER BY id_rujukan');
47
+                $tampil = mysql_query('SELECT * FROM rujukan ORDER BY id_rujukan');
48 48
 
49
-            $no = 1;
49
+                $no = 1;
50 50
 
51
-            while ($r = mysql_fetch_array($tampil)) {
52
-                if ($r[tipe] == 'R') {
53
-                    $tipe = 'RS/Klinik';
54
-                } else {
55
-                    $tipe = 'Lab';
56
-                }
51
+                while ($r = mysql_fetch_array($tampil)) {
52
+                    if ($r[tipe] == 'R') {
53
+                        $tipe = 'RS/Klinik';
54
+                    } else {
55
+                        $tipe = 'Lab';
56
+                    }
57 57
 
58
-                echo'<tr>';
59
-                echo"<td>$tipe</td>";
60
-                echo"<td>$r[rujukan]</td>";
61
-                echo"<td style='text-align:center;'>$r[aktif]</td>";
62
-                echo" <td  style='text-align:center;'>";
58
+                    echo'<tr>';
59
+                    echo"<td>$tipe</td>";
60
+                    echo"<td>$r[rujukan]</td>";
61
+                    echo"<td style='text-align:center;'>$r[aktif]</td>";
62
+                    echo" <td  style='text-align:center;'>";
63 63
 
64
-                if ($r_edit == 'Y') {
65
-                    echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_rujukan=$r[id_rujukan]&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>";
66
-                }
64
+                    if ($r_edit == 'Y') {
65
+                        echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_rujukan=$r[id_rujukan]&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>";
66
+                    }
67 67
 
68
-                // if($r_delete == 'Y') {
69
-                // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_rujukan]&id_module=$id' onClick=\"return confirm('Hapus data ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
70
-                // }
71
-                echo'</td>';
72
-                echo'</tr>';
73
-                $no++;
74
-            }
75
-                                ?>
68
+                    // if($r_delete == 'Y') {
69
+                    // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_rujukan]&id_module=$id' onClick=\"return confirm('Hapus data ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
70
+                    // }
71
+                    echo'</td>';
72
+                    echo'</tr>';
73
+                    $no++;
74
+                }
75
+                                    ?>
76 76
                          </tbody>
77 77
                     </table>
78 78
                   </div>
Please login to merge, or discard this patch.
modul/mod_rujukan_pasien/rujukan_pasien.php 1 patch
Switch Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 switch ($_GET[act]) {
3 3
 
4
-default:
5
-  ?>
4
+    default:
5
+      ?>
6 6
 
7 7
  <div class="">
8 8
                    
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
                             
47 47
                          <?php
48 48
 
49
-            $tampil = mysql_query("SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori    
49
+                $tampil = mysql_query("SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori    
50 50
                                     ,e.rujukan as rujukan_rs
51 51
                                     ,f.rujukan as rujukan_lab                              
52 52
                                 FROM kunjungan_berobat a left join pasien b 
@@ -62,31 +62,31 @@  discard block
 block discarded – undo
62 62
                                  WHERE a.rujukan = 'Y'                    
63 63
                                  ORDER BY a.tanggal,a.id_poli,a.no_urut ASC");
64 64
 
65
-            $no = 1;
65
+                $no = 1;
66 66
 
67
-            while ($r = mysql_fetch_array($tampil)) {
68
-                $tgl = date('d/m/Y', strtotime($r[tanggal]));
69
-                $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
67
+                while ($r = mysql_fetch_array($tampil)) {
68
+                    $tgl = date('d/m/Y', strtotime($r[tanggal]));
69
+                    $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
70 70
 
71
-                echo'<tr>';
72
-                echo"<td>$tgl</td>";
73
-                echo"<td>$r[poli]</td>";
74
-                echo"<td>$r[no_urut]</td>";
75
-                echo"<td>$r[nama]</td>";
76
-                echo"<td>$r[kategori]</td>";
77
-                echo"<td>$r[rujukan_rs]</td>";
78
-                echo"<td>$r[rujukan_lab]</td>";
79
-                echo" <td  style='text-align:center;'>";
71
+                    echo'<tr>';
72
+                    echo"<td>$tgl</td>";
73
+                    echo"<td>$r[poli]</td>";
74
+                    echo"<td>$r[no_urut]</td>";
75
+                    echo"<td>$r[nama]</td>";
76
+                    echo"<td>$r[kategori]</td>";
77
+                    echo"<td>$r[rujukan_rs]</td>";
78
+                    echo"<td>$r[rujukan_lab]</td>";
79
+                    echo" <td  style='text-align:center;'>";
80 80
 
81
-                if ($r_edit == 'Y') {
82
-                    echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_kunjungan_berobat=$r[id_kunjungan_berobat]&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>";
83
-                }
81
+                    if ($r_edit == 'Y') {
82
+                        echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_kunjungan_berobat=$r[id_kunjungan_berobat]&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>";
83
+                    }
84 84
 
85
-                echo'</td>';
86
-                echo'</tr>';
87
-                $no++;
88
-            }
89
-                                ?>
85
+                    echo'</td>';
86
+                    echo'</tr>';
87
+                    $no++;
88
+                }
89
+                                    ?>
90 90
                          </tbody>
91 91
                     </table>
92 92
                   </div>
Please login to merge, or discard this patch.
modul/mod_rekam_medis/rekam_medis.php 1 patch
Switch Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 switch ($_GET[act]) {
3 3
 
4
-default:
5
-  ?>
4
+    default:
5
+      ?>
6 6
 
7 7
  <div class="">
8 8
                    
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                             
49 49
                          <?php
50 50
 
51
-            $tampil = mysql_query('SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori                                  
51
+                $tampil = mysql_query('SELECT a.*,b.nama,b.tgl_lahir,b.ktp,c.poli,d.kategori                                  
52 52
                                 FROM kunjungan_berobat a left join pasien b 
53 53
                                  ON a.id_pasien = b.id_pasien
54 54
                                  left join poli c 
@@ -57,33 +57,33 @@  discard block
 block discarded – undo
57 57
                                  ON b.id_kategori = d.id_kategori                                
58 58
                                  ORDER BY a.tanggal,a.id_poli,a.no_urut ASC');
59 59
 
60
-            $no = 1;
60
+                $no = 1;
61 61
 
62
-            while ($r = mysql_fetch_array($tampil)) {
63
-                $tgl = date('d/m/Y', strtotime($r[tanggal]));
64
-                $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
62
+                while ($r = mysql_fetch_array($tampil)) {
63
+                    $tgl = date('d/m/Y', strtotime($r[tanggal]));
64
+                    $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
65 65
 
66
-                echo'<tr>';
67
-                echo"<td>$tgl</td>";
68
-                echo"<td>$r[poli]</td>";
69
-                echo"<td>$r[no_urut]</td>";
70
-                echo"<td>$r[nama]</td>";
71
-                echo"<td>$r[kategori]</td>";
72
-                echo"<td>$r[keluhan]</td>";
73
-                echo"<td>$r[diagnosa]</td>";
74
-                echo"<td>$r[pemeriksaan]</td>";
75
-                echo"<td>$r[tindakan]</td>";
76
-                echo" <td  style='text-align:center;'>";
66
+                    echo'<tr>';
67
+                    echo"<td>$tgl</td>";
68
+                    echo"<td>$r[poli]</td>";
69
+                    echo"<td>$r[no_urut]</td>";
70
+                    echo"<td>$r[nama]</td>";
71
+                    echo"<td>$r[kategori]</td>";
72
+                    echo"<td>$r[keluhan]</td>";
73
+                    echo"<td>$r[diagnosa]</td>";
74
+                    echo"<td>$r[pemeriksaan]</td>";
75
+                    echo"<td>$r[tindakan]</td>";
76
+                    echo" <td  style='text-align:center;'>";
77 77
 
78
-                if ($r_edit == 'Y') {
79
-                    echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_kunjungan_berobat=$r[id_kunjungan_berobat]&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>";
80
-                }
78
+                    if ($r_edit == 'Y') {
79
+                        echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_kunjungan_berobat=$r[id_kunjungan_berobat]&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>";
80
+                    }
81 81
 
82
-                echo'</td>';
83
-                echo'</tr>';
84
-                $no++;
85
-            }
86
-                                ?>
82
+                    echo'</td>';
83
+                    echo'</tr>';
84
+                    $no++;
85
+                }
86
+                                    ?>
87 87
                          </tbody>
88 88
                     </table>
89 89
                   </div>
Please login to merge, or discard this patch.
modul/mod_pasien/pasien.php 1 patch
Switch Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 <?php
3 3
 switch ($_GET[act]) {
4 4
 
5
-default:
6
-  ?>
5
+    default:
6
+      ?>
7 7
 
8 8
  <div class="">
9 9
                    
@@ -51,36 +51,36 @@  discard block
 block discarded – undo
51 51
                          <?php
52 52
 
53 53
 
54
-                            $tampil = mysql_query('SELECT a.*,b.agama,c.kategori
54
+                                $tampil = mysql_query('SELECT a.*,b.agama,c.kategori
55 55
                                                 FROM pasien a left join agama b 
56 56
                                                  ON a.id_agama = b.id_agama
57 57
                                                  left join kategori c
58 58
                                                  ON a.id_kategori = c.id_kategori
59 59
                                                  ORDER BY a.nama ');
60 60
 
61
-                            $no = 1;
61
+                                $no = 1;
62 62
 
63
-                            while ($r = mysql_fetch_array($tampil)) {
64
-                                $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
63
+                                while ($r = mysql_fetch_array($tampil)) {
64
+                                    $tgl_lahir = date('d/m/Y', strtotime($r[tgl_lahir]));
65 65
 
66
-                                if ($r['gender'] == 'L') {
67
-                                    $gender = 'Laki-laki';
68
-                                } else {
69
-                                    $gender = 'Perempuan';
70
-                                }
66
+                                    if ($r['gender'] == 'L') {
67
+                                        $gender = 'Laki-laki';
68
+                                    } else {
69
+                                        $gender = 'Perempuan';
70
+                                    }
71 71
 
72
-                                echo'<tr>';
73
-                                echo"<td>$r[nama]</td>";
74
-                                echo"<td>$r[ktp]</td>";
75
-                                echo"<td>$tgl_lahir</td>";
76
-                                echo"<td>$gender</td>";
77
-                                echo"<td>$r[agama]</td>";
78
-                                echo"<td>$r[kategori]</td>";
79
-                                echo"<td>$r[telp]</td>";
80
-                                echo"<td>$r[alamat]</td>";
81
-                                echo"<td style='text-align:center;'>$r[aktif]</td>";
82
-                                echo" <td  style='text-align:center;'>"; ?>
83
-                            <a href='#' title='Cetak' onclick="window.open('./modul/mod_<?php echo $module; ?>/cetak_pasien.php?id_pasien=<?php echo $r[id_pasien]; ?>', '', 'height=500,width=600,resizable=1,scrollbars=1,addressbars=0,directories=no,location=no')">
72
+                                    echo'<tr>';
73
+                                    echo"<td>$r[nama]</td>";
74
+                                    echo"<td>$r[ktp]</td>";
75
+                                    echo"<td>$tgl_lahir</td>";
76
+                                    echo"<td>$gender</td>";
77
+                                    echo"<td>$r[agama]</td>";
78
+                                    echo"<td>$r[kategori]</td>";
79
+                                    echo"<td>$r[telp]</td>";
80
+                                    echo"<td>$r[alamat]</td>";
81
+                                    echo"<td style='text-align:center;'>$r[aktif]</td>";
82
+                                    echo" <td  style='text-align:center;'>"; ?>
83
+                                <a href='#' title='Cetak' onclick="window.open('./modul/mod_<?php echo $module; ?>/cetak_pasien.php?id_pasien=<?php echo $r[id_pasien]; ?>', '', 'height=500,width=600,resizable=1,scrollbars=1,addressbars=0,directories=no,location=no')">
84 84
 
85 85
                             <span class='icon'><i class='fa fa-print'></i></span>
86 86
 
@@ -88,18 +88,18 @@  discard block
 block discarded – undo
88 88
 
89 89
                             <?php
90 90
 
91
-                            if ($r_edit == 'Y') {
92
-                                echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_pasien=$r[id_pasien]&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>";
93
-                            }
91
+                                if ($r_edit == 'Y') {
92
+                                    echo"<a class='thickbox' href='modul/mod_$module/form_$module.php?id_pasien=$r[id_pasien]&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>";
93
+                                }
94 94
 
95
-                                // if($r_delete == 'Y') {
96
-                                // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_pasien]&id_module=$id' onClick=\"return confirm('Delete this record ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
97
-                                // }
98
-                                echo'</td>';
99
-                                echo'</tr>';
100
-                                $no++;
101
-                            }
102
-                                ?>
95
+                                    // if($r_delete == 'Y') {
96
+                                    // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_pasien]&id_module=$id' onClick=\"return confirm('Delete this record ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
97
+                                    // }
98
+                                    echo'</td>';
99
+                                    echo'</tr>';
100
+                                    $no++;
101
+                                }
102
+                                    ?>
103 103
                          </tbody>
104 104
                     </table>
105 105
                   </div>
Please login to merge, or discard this patch.
modul/mod_obat/obat.php 1 patch
Switch Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 <?php
3 3
 switch ($_GET[act]) {
4 4
 
5
-default:
6
-  ?>
5
+    default:
6
+      ?>
7 7
 
8 8
  <div class="">
9 9
                    
@@ -45,35 +45,35 @@  discard block
 block discarded – undo
45 45
                             
46 46
                          <?php
47 47
 
48
-            $tampil = mysql_query('SELECT a.*,b.satuan 
48
+                $tampil = mysql_query('SELECT a.*,b.satuan 
49 49
                                 FROM obat a left join satuan b 
50 50
                                  ON a.id_satuan = b.id_satuan
51 51
                                  ORDER BY a.obat ');
52 52
 
53
-            $no = 1;
53
+                $no = 1;
54 54
 
55
-            while ($r = mysql_fetch_array($tampil)) {
56
-                $jumlah = number_format($r[jumlah], 0, '', '.');
55
+                while ($r = mysql_fetch_array($tampil)) {
56
+                    $jumlah = number_format($r[jumlah], 0, '', '.');
57 57
 
58
-                echo'<tr>';
59
-                echo"<td>$r[obat]</td>";
60
-                echo"<td>$r[satuan]</td>";
61
-                echo"<td style='text-align:right;'>$jumlah</td>";
62
-                echo"<td style='text-align:center;'>$r[aktif]</td>";
63
-                echo" <td  style='text-align:center;'>";
58
+                    echo'<tr>';
59
+                    echo"<td>$r[obat]</td>";
60
+                    echo"<td>$r[satuan]</td>";
61
+                    echo"<td style='text-align:right;'>$jumlah</td>";
62
+                    echo"<td style='text-align:center;'>$r[aktif]</td>";
63
+                    echo" <td  style='text-align:center;'>";
64 64
 
65
-                if ($r_edit == 'Y') {
66
-                    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>";
67
-                }
65
+                    if ($r_edit == 'Y') {
66
+                        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>";
67
+                    }
68 68
 
69
-                // if($r_delete == 'Y') {
70
-                // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_obat]&id_module=$id' onClick=\"return confirm('Delete this record ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
71
-                // }
72
-                echo'</td>';
73
-                echo'</tr>';
74
-                $no++;
75
-            }
76
-                                ?>
69
+                    // if($r_delete == 'Y') {
70
+                    // echo"<a href='modul/mod_$module/aksi_$module.php?module=$module&act=hapus&id=$r[id_obat]&id_module=$id' onClick=\"return confirm('Delete this record ?')\" title='Delete $nmmodule'><span class='icon'><i class='fa fa-trash'></i></span></a>";
71
+                    // }
72
+                    echo'</td>';
73
+                    echo'</tr>';
74
+                    $no++;
75
+                }
76
+                                    ?>
77 77
                          </tbody>
78 78
                     </table>
79 79
                   </div>
Please login to merge, or discard this patch.
modul/mod_report_kunjungan_pasien/report_kunjungan_pasien.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 $prd = date('Y-m');
65 65
 
66 66
 $userid = $_SESSION['userid'];
67
-  ?>
67
+    ?>
68 68
 
69 69
  <div class="">
70 70
                    
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
 
116 116
              <?php
117 117
 
118
-             $module = '?module='.$_GET['module'];
119
-             $tampil = mysql_query("SELECT id_modul as id FROM modul WHERE link='".$module."'");
120
-             $r = mysql_fetch_array($tampil);
118
+                $module = '?module='.$_GET['module'];
119
+                $tampil = mysql_query("SELECT id_modul as id FROM modul WHERE link='".$module."'");
120
+                $r = mysql_fetch_array($tampil);
121 121
 
122
-             echo"<input type='hidden' name='report_id' id='report_id' value=".$r[id].'>';
123
-             echo"<input type='hidden' name='module' value=".$_GET[module].'>';
122
+                echo"<input type='hidden' name='report_id' id='report_id' value=".$r[id].'>';
123
+                echo"<input type='hidden' name='module' value=".$_GET[module].'>';
124 124
             ?>
125 125
             </form>    
126 126
                    
Please login to merge, or discard this patch.