Index: trunk/stp-importer.php
===================================================================
--- trunk/stp-importer.php	(revision 326728)
+++ trunk/stp-importer.php	(working copy)
@@ -178,15 +178,14 @@
 	}
 }
 
-// create the import object
-$stp_import = new STP_Import();
-
-// add it to the import page!
-register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into WordPress tags.', 'stp-importer'), array($stp_import, 'dispatch'));
-
 } // class_exists( 'WP_Importer' )
 
 function stp_importer_init() {
     load_plugin_textdomain( 'stp-importer', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
+
+	// create the import object
+	$stp_import = new STP_Import();
+	// add it to the import page!
+	register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into WordPress tags.', 'stp-importer'), array($stp_import, 'dispatch'));
 }
-add_action( 'init', 'stp_importer_init' );
+add_action( 'admin_init', 'stp_importer_init' );
