Signed-off-by: Matthieu Moy <Matthieu.Moy@xxxxxxx> --- contrib/mw-to-git/t/install-wiki/db_install.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/contrib/mw-to-git/t/install-wiki/db_install.php b/contrib/mw-to-git/t/install-wiki/db_install.php index 3111c73..b34772a 100644 --- a/contrib/mw-to-git/t/install-wiki/db_install.php +++ b/contrib/mw-to-git/t/install-wiki/db_install.php @@ -10,7 +10,6 @@ * In order to generate a SQLite database file, MediaWiki ask the user * to submit some forms in its web browser. This script simulates this * behavior though the functions <get> and <submit> - * */ $argc = $_SERVER['argc']; $argv = $_SERVER['argv']; @@ -22,7 +21,7 @@ $port = $argv[5]; $url = 'http://localhost:'.$port.'/wiki/mw-config/index.php'; $db_dir = urlencode($tmp); -$tmp_cookie = tempnam($tmp,"COOKIE_"); +$tmp_cookie = tempnam($tmp, "COOKIE_"); /* * Fetchs a page with cURL. */ @@ -33,13 +32,13 @@ function get ($page_name = "") { $page_name_add = '?page='.$page_name; } $url = $GLOBALS['url'].$page_name_add; - $tmp_cookie=$GLOBALS['tmp_cookie']; + $tmp_cookie = $GLOBALS['tmp_cookie']; curl_setopt($curl, CURLOPT_COOKIEJAR, $tmp_cookie); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_COOKIEFILE, $tmp_cookie); curl_setopt($curl, CURLOPT_HEADER, true); - curl_setopt($curl, CURLOPT_URL,$url); + curl_setopt($curl, CURLOPT_URL, $url); $page = curl_exec($curl); curl_close($curl); @@ -75,7 +74,6 @@ function submit($page_name, $option = "") { * submitting forms to generates the database file. * Note this simulation was made for the MediaWiki version 1.19.0, * we can't assume it works with other versions. - * */ $page = get(); -- 1.7.11.rc0.57.g84a04c7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html