diff --git a/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js b/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js
index 524b897f2..bf7cf6f51 100644
--- a/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js
+++ b/guacamole/src/main/webapp/app/manage/controllers/manageUserController.js
@@ -146,17 +146,6 @@ angular.module('manage').controller('manageUserController', ['$scope', '$injecto
*/
$scope.accountPages = [];
- /**
- * Returns whether the list of all available account tabs should be shown.
- *
- * @returns {Boolean}
- * true if the list of available account tabs should be shown, false
- * otherwise.
- */
- $scope.showAccountTabs = function showAccountTabs() {
- return !!$scope.accountPages && $scope.accountPages.length > 1;
- };
-
/**
* Returns whether critical data has completed being loaded.
*
diff --git a/guacamole/src/main/webapp/app/manage/templates/manageUser.html b/guacamole/src/main/webapp/app/manage/templates/manageUser.html
index 04cd593a6..71a6d93cf 100644
--- a/guacamole/src/main/webapp/app/manage/templates/manageUser.html
+++ b/guacamole/src/main/webapp/app/manage/templates/manageUser.html
@@ -28,7 +28,7 @@ THE SOFTWARE.