Skip to content

Commit

Permalink
Merge pull request #86 from pirog/7.x-3.x
Browse files Browse the repository at this point in the history
#72: Use platform agnostic directory seperator for subtheme generator
  • Loading branch information
pirog committed Jun 29, 2014
2 parents a283db6 + 3635119 commit 4f7cd58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/config.inc
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ function kalatheme_run_install($filetransfer, $projects) {
// but _batch_process prepends DRUPAL_ROOT so we need to strip that
// out here as well
$file = dirname(__FILE__) . '/../kalatheme.authorize.inc';
$file = str_replace(DRUPAL_ROOT . '/', '', $file);
$file = str_replace(DRUPAL_ROOT . DIRECTORY_SEPARATOR, '', $file);

// Set the batch up!
$batch = array(
Expand Down

0 comments on commit 4f7cd58

Please sign in to comment.