Skip to content

Commit

Permalink
Fixed conversion on Windows systems
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Oct 17, 2016
1 parent 5019e45 commit ad2a120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aimeos/Shop/Command/SetupCommand.php
Expand Up @@ -179,7 +179,7 @@ protected function setOptions( \Aimeos\MW\Config\Iface $conf )
foreach( (array) $this->option( 'option' ) as $option )
{
list( $name, $value ) = explode( ':', $option );
$conf->set( $name, $value );
$conf->set( str_replace( '\\', '/', $name ), $value );
}
}
}

0 comments on commit ad2a120

Please sign in to comment.