diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-08-07 21:39:57 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-08-07 21:39:57 +0000 |
commit | 6f5adec2b3db1bfcde0fa7c01f2635f78f6e1bb5 (patch) | |
tree | 1e921787402bab58b11061ee20d26bff634cd927 /install.php | |
parent | f2ed54177fef2bc026257e866c6829423ecf25af (diff) |
bug correction, a single quote was not in the right place
git-svn-id: http://piwigo.org/svn/trunk@482 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 4fc7b4d02..6f3a3188f 100644 --- a/install.php +++ b/install.php @@ -283,7 +283,7 @@ if ( isset( $_POST['install'] )) mysql_query( $query ); $query = 'INSERT INTO '.SITES_TABLE; - $query.= " (id,galleries_url) VALUES (1, ".PHPWG_ROOT_PATH."'galleries/');"; + $query.= " (id,galleries_url) VALUES (1, '".PHPWG_ROOT_PATH."galleries/');"; mysql_query( $query ); // webmaster admin user |