Skip to content

Commit

Permalink
Fix for reference to static route and fix for broken plugin settings …
Browse files Browse the repository at this point in the history
…page
  • Loading branch information
brianhyder committed Mar 27, 2015
1 parent f081c07 commit 6b787cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ module.exports = function(pb) {
name: 'manage',
title: data.details.name,
icon: 'chevron-left',
href: '/admin/plugins/'
href: '/admin/plugins'
}
];
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
module.exports = function(pb) {

//pb dependencies
var util = pb.util;
var util = pb.util;
var BaseController = pb.BaseController;

/**
Expand All @@ -34,7 +34,7 @@ module.exports = function(pb) {
* @property pluginService
* @type {PluginService}
*/
this.pluginService = new PluginService();
this.pluginService = new pb.PluginService();
}
util.inherits(PluginSettingsFormController, BaseController);

Expand Down

0 comments on commit 6b787cd

Please sign in to comment.