moved .sql out of root

This commit is contained in:
Sean Coates
2004-09-12 15:42:32 +00:00
parent 3f9f3ffde8
commit 02a3d82fac
2 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ $idx = sqlite_open("../sqlite/rfc.sqlite", 0666);
if (!$idx) {
die("could not open $tmp_name");
}
sqlite_query($idx, file_get_contents("../rfc.sql"));
sqlite_query($idx, file_get_contents("../sql/rfc.sql"));
sqlite_close($idx);
/* vim: set noet ts=4 sw=4 ft=php: : */