Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 946 | Revision 1676 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 946 Revision 947
Zeile 176... Zeile 176...
176
                        JOIN
176
                        JOIN
177
                            payment_methods z
177
                            payment_methods z
178
                        ON
178
                        ON
179
                            z.id=vz.payment_method_id
179
                            z.id=vz.payment_method_id
180
                        WHERE
180
                        WHERE
181
                            shipping_id IN (" . implode( ",", $shippingIds ) . ")
181
                            shipping_id =" . $vRow->id . "
182
                    ";
182
                    ";
183
                    if ( isset( $_GET['vRufname'] ) && is_numeric( $_GET['vRufname'] ) )
183
                    if ( isset( $_GET['vRufname'] ) && is_numeric( $_GET['vRufname'] ) )
184
                    {
184
                    {
185
                        $sql .= " AND z.id = " . $_GET['vRufname'];
185
                        $sql .= " AND z.id = " . $_GET['vRufname'];
186
                    }
186
                    }