Skip to content

Commit

Permalink
Merge pull request #4 from rexblack/master
Browse files Browse the repository at this point in the history
Fixed error message during install due to missing database tables
  • Loading branch information
lavoiesl committed Jan 21, 2015
2 parents fa7c18a + e1fcd9b commit 36cb5b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mu-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

function mu_loader_plugins_files()
{

if (defined('WP_INSTALLING') && WP_INSTALLING === true) {
// Do nothing during installation
return array();
}

// Cache plugins
$plugins = get_site_transient('mu_loader_plugins');

Expand Down

0 comments on commit 36cb5b0

Please sign in to comment.