diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php
index 293689cd9d..84c29cebe9 100644
--- a/module/bug/view/browse.html.php
+++ b/module/bug/view/browse.html.php
@@ -16,7 +16,7 @@ include '../../common/view/treeview.html.php';
include '../../common/view/colorize.html.php';
js::set('browseType', $browseType);
js::set('moduleID', $moduleID);
-js::set('customed', $customed, 'number');
+js::set('customed', $customed);
?>
diff --git a/module/bug/view/create.html.php b/module/bug/view/create.html.php
index 76e55a92ee..82606d6944 100644
--- a/module/bug/view/create.html.php
+++ b/module/bug/view/create.html.php
@@ -16,8 +16,8 @@ include '../../common/view/chosen.html.php';
include '../../common/view/autocomplete.html.php';
include '../../common/view/alert.html.php';
include '../../common/view/kindeditor.html.php';
-js::set('holders', $lang->bug->placeholder, 'json');
-js::set('userList', array_keys($users), 'json');
+js::set('holders', $lang->bug->placeholder);
+js::set('userList', array_keys($users));
js::set('page', 'create');
?>
diff --git a/module/bug/view/edit.html.php b/module/bug/view/edit.html.php
index 2c3ac51bd0..15fecb4898 100644
--- a/module/bug/view/edit.html.php
+++ b/module/bug/view/edit.html.php
@@ -17,15 +17,15 @@ include '../../common/view/autocomplete.html.php';
include '../../common/view/alert.html.php';
include '../../common/view/kindeditor.html.php';
js::set('page' , 'edit');
-js::set('changeProductConfirmed' , 'false', 'number');
-js::set('changeProjectConfirmed' , 'false', 'number');
+js::set('changeProductConfirmed' , false);
+js::set('changeProjectConfirmed' , false);
js::set('confirmChangeProduct' , $lang->bug->confirmChangeProduct);
js::set('oldProjectID' , $bug->project);
js::set('oldStoryID' , $bug->story);
js::set('oldTaskID' , $bug->task);
js::set('oldOpenedBuild' , $bug->openedBuild);
js::set('oldResolvedBuild' , $bug->resolvedBuild);
-js::set('userList' , array_keys($users), 'json');
+js::set('userList' , array_keys($users));
?>