]> git.p6c8.net - jirafeau_project.git/blobdiff - file.php
Fix php 5.3 support and prepare languages
[jirafeau_project.git] / file.php
index 32c097f768b47ea7a9a5293adadab144909e66c7..0a6e32cb98cc5cd2955834fe19585099dadfbb26 100644 (file)
--- a/file.php
+++ b/file.php
  */
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
 
-require (JIRAFEAU_ROOT.'lib/config.php');
-require (JIRAFEAU_ROOT.'lib/settings.php');
-require (JIRAFEAU_ROOT.'lib/functions.php');
+require (JIRAFEAU_ROOT . 'lib/lang.php');
+require (JIRAFEAU_ROOT . 'lib/config.php');
+require (JIRAFEAU_ROOT . 'lib/settings.php');
+require (JIRAFEAU_ROOT . 'lib/functions.php');
 
 if (isset ($_GET['h']) && !empty ($_GET['h']))
 {
@@ -31,7 +32,7 @@ if (isset ($_GET['h']) && !empty ($_GET['h']))
     if (isset ($_GET['d']) && !empty ($_GET['d']))
         $delete_code = $_GET['d'];
 
-    if (!ereg ('[0-9a-f]{32}$', $link_name))
+    if (!preg_match ('/[0-9a-f]{32}$/', $link_name))
     {
         header ("HTTP/1.0 404 Not Found");
 

patrick-canterino.de