diff --git a/app/views/admin/import/index.html.erb b/app/views/admin/import/index.html.erb
index dc88900..8b13311 100644
--- a/app/views/admin/import/index.html.erb
+++ b/app/views/admin/import/index.html.erb
@@ -299,7 +299,7 @@
}).done(function(data){
$("#import-progress-text").html("Importing Images...
");
gallery_data = data.images;
- f(gallery_data.length > 0){
+ if(gallery_data.length > 0){
importImagesForAlbums(0);
}else{
$("#import-progress .bar").css('width','100%');
@@ -408,7 +408,6 @@
}
var importplugin = function(id,p,number,name){
- console.log(name);
var plugin = plugins[p];
$("#import-progress-text #plugin_name").html(plugin.charAt(0).toUpperCase() + plugin.slice(1));
$.ajax({