diff -r 3fe11491f512 -r 7664d7d38a4a install/includes/cli-core.php --- a/install/includes/cli-core.php Wed Jan 14 23:29:14 2009 -0500 +++ b/install/includes/cli-core.php Fri Jan 16 13:13:03 2009 -0500 @@ -456,9 +456,9 @@ $vars = array( 'TABLE_PREFIX' => table_prefix, - 'SITE_NAME' => $sitename, - 'SITE_DESC' => $sitedesc, - 'COPYRIGHT' => $copyright, + 'SITE_NAME' => $db->escape($sitename), + 'SITE_DESC' => $db->escape($sitedesc), + 'COPYRIGHT' => $db->escape($copyright), 'WIKI_MODE' => '0', 'ENABLE_CACHE' => ( is_writable( ENANO_ROOT . '/cache/' ) ? '1' : '0' ), 'VERSION' => installer_enano_version(),