Commit 7f9df77b authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix composer autoload include

parent 1e2ed9d3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,5 +27,5 @@ define('UPLOADS', 'media');
 * Run the Composer autoloader, if available
 * Assume the CWD is always /app and vendor is always in it.
 **/
if ( is_file('vendor/autoload.php') )
	require_once 'vendor/autoload.php';
if ( is_file(ABSPATH . 'vendor/autoload.php') )
	require_once ABSPATH . 'vendor/autoload.php';