diff --git a/app/controllers/exceptionhandler_controller.rb b/app/controllers/exceptionhandler_controller.rb index f3976c2..a7765fe 100644 --- a/app/controllers/exceptionhandler_controller.rb +++ b/app/controllers/exceptionhandler_controller.rb @@ -28,7 +28,7 @@ class ExceptionhandlerController < ApplicationController include ExceptionhandlerHelper def index - if params.size < 8 + if params.size < 9 @output = " not enough args " elsif Project.find_by_name(params[:app]) == nil @output = "No Project Found" diff --git a/init.rb b/init.rb index b66c643..ddef4af 100644 --- a/init.rb +++ b/init.rb @@ -4,7 +4,7 @@ Redmine::Plugin.register :redmine_exception_handler do name 'Redmine Exception Handler plugin' author 'Rick Barrette ' description 'An Exception Report Handler plugin for Redmine' - version '0.0.2' + version '0.0.3' url 'http://example.com/redmine/exceptionhandler' author_url 'http://rickbarrette.dyndns.org' end