Removed global $siteurl and $blogfilename, use get_settings. Syntax fix for wp-db.

git-svn-id: https://develop.svn.wordpress.org/trunk@945 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg
2004-02-26 16:15:48 +00:00
parent f7310ec845
commit 22ed64e4ec
27 changed files with 131 additions and 131 deletions
+1 -1
View File
@@ -676,7 +676,7 @@ $guessurl = str_replace('/wp-admin/install.php?step=2', '', 'http://' . $HTTP_HO
<?php
$url = $HTTP_POST_VARS['url'];
$url = $_POST['url'];
if (isset($url)) {
$query= "UPDATE $tableoptions set option_value='$url' where option_id=1"; //siteurl
$q = $wpdb->query($query);