| 1 | From f4e566e388e0b218dc1abf1cdd1de48370816967 Mon Sep 17 00:00:00 2001
|
|---|
| 2 | From: Sunny Ratilal <ratilal.sunny@gmail.com>
|
|---|
| 3 | Date: Tue, 9 Apr 2013 14:15:08 +0100
|
|---|
| 4 | Subject: [PATCH] Remove double semicolons
|
|---|
| 5 |
|
|---|
| 6 | ---
|
|---|
| 7 | bin/install.php | 2 +-
|
|---|
| 8 | 1 file changed, 1 insertion(+), 1 deletion(-)
|
|---|
| 9 |
|
|---|
| 10 | diff --git a/bin/install.php b/bin/install.php
|
|---|
| 11 | index dd4fe5b..b846eef 100644
|
|---|
| 12 | --- a/bin/install.php
|
|---|
| 13 | +++ b/bin/install.php
|
|---|
| 14 | @@ -7,7 +7,7 @@
|
|---|
| 15 | error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
|
|---|
| 16 |
|
|---|
| 17 | $config_file_path = $argv[1];
|
|---|
| 18 | -$multisite = ! empty( $argv[2] );;
|
|---|
| 19 | +$multisite = ! empty( $argv[2] );
|
|---|
| 20 |
|
|---|
| 21 | define( 'WP_INSTALLING', true );
|
|---|
| 22 | require_once $config_file_path;
|
|---|
| 23 | --
|
|---|
| 24 | 1.7.11.1
|
|---|
| 25 |
|
|---|