Index: trunk/livejournal-importer.php
===================================================================
--- trunk/livejournal-importer.php	(revision 326728)
+++ trunk/livejournal-importer.php	(working copy)
@@ -1096,13 +1096,12 @@
 
 }
 
-$lj_api_import = new LJ_API_Import();
-
-register_importer( 'livejournal', __( 'LiveJournal' , 'livejournal-importer'), __( 'Import posts from LiveJournal using their API.' , 'livejournal-importer'), array( $lj_api_import, 'dispatch' ) );
-
 } // class_exists( 'WP_Importer' )
 
 function livejournal_importer_init() {
     load_plugin_textdomain( 'livejournal-importer', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
+
+	$lj_api_import = new LJ_API_Import();
+	register_importer( 'livejournal', __( 'LiveJournal' , 'livejournal-importer'), __( 'Import posts from LiveJournal using their API.' , 'livejournal-importer'), array( $lj_api_import, 'dispatch' ) );
 }
-add_action( 'init', 'livejournal_importer_init' );
+add_action( 'admin_init', 'livejournal_importer_init' );
