Skip to content

Commit

Permalink
Extra array around an arg to setUserAuthData op.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdboyer committed Feb 17, 2011
1 parent 3423b22 commit 022d543
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db-migrate-stage1.drush.php
Expand Up @@ -40,7 +40,7 @@
list($uri, $nid) = explode(',', $empty);
$empties[$nid] = $uri;
}
unset ($empties_raw);
unset($empties_raw);

$auth_data = array(
'access' => VersioncontrolAuthHandlerMappedAccounts::ALL,
Expand Down Expand Up @@ -128,7 +128,7 @@
// Add shared job ops.

// Save user auth data.
$job['operation']['setUserAuthData'] = array(array($maintainers_result->fetchAll(PDO::FETCH_COLUMN), $auth_data));
$job['operation']['setUserAuthData'] = array($maintainers_result->fetchAll(PDO::FETCH_COLUMN), $auth_data);
// Set the description with a link to the project page
$job['operation']['setDescription'] = array('For more information about this repository, visit the project page at ' . url('node/' . $repo->project_nid, array('absolute' => TRUE)));

Expand Down

0 comments on commit 022d543

Please sign in to comment.