]> git.wh0rd.org - tt-rss.git/commitdiff
mysql_convert_unicode: fix include paths
authorAndrew Dolgov <fox@bah.org.ru>
Mon, 2 Feb 2009 13:17:17 +0000 (16:17 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Mon, 2 Feb 2009 13:17:17 +0000 (16:17 +0300)
utils/mysql_convert_unicode.php

index 6d43c234c5fbd57ef8a237db1205c8714c699023..acc1e77af0a37a0dc5ba9c7ebecfece0729e7da3 100644 (file)
@@ -1,12 +1,12 @@
 <?php
        error_reporting(E_ERROR | E_WARNING | E_PARSE);
 
-       require_once "sessions.php";
+       require_once "../sessions.php";
        
-       require_once "sanity_check.php";
-       require_once "functions.php";
-       require_once "config.php";
-       require_once "db.php";
+       require_once "../sanity_check.php";
+       require_once "../functions.php";
+       require_once "../config.php";
+       require_once "../db.php";
        
        $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);