diff --git a/prive/images/index.php b/prive/images/index.php index 778bb32621a4b41f6f20d3df692be6213493329e..93d338e78f8bc6bd6d0c89f2a2d6c1a4becd020a 100644 --- a/prive/images/index.php +++ b/prive/images/index.php @@ -11,12 +11,11 @@ <?php $myDir = opendir('.'); while ($file = readdir($myDir)) { - if (preg_match(",\.(png|gif)$,i", $file)) { + if (preg_match(',\.(png|gif)$,i', $file)) { echo " <tr><td>$file</td><td><img src='$file' alt='$file' /></td></tr>\n"; } } ?> - </table> </center> </body>