From 0d25dd3b800e83de3183d9d1210cc196b6c53a8e Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 18 Mar 2003 15:11:13 +0000 Subject: [PATCH] removed sms notification from preferences --- presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc b/presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc index 528e351..e109d06 100644 --- a/presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc +++ b/presentation/lookAndFeel/knowledgeTree/preferences/editUserPrefsUI.inc @@ -23,16 +23,16 @@ function getUserDetailsPage($iUserID) { $oUser = null; $sQuery = "SELECT * FROM $default->owl_users_table WHERE id = $iUserID"; - $aDisplayColumns = array("name","email", "mobile", "email_notification", "sms_notification"); - $aStoreColumns = array("name","email", "mobile", "email_notification", "sms_notification") ; - $aColumnNames = array("Name: ", "Email Address: ", "Mobile Number: ", "Email Notification: ", "Sms Notification: "); - $aDisplayColumnTypes = array(1,1,1,2,2); - $aDatabaseColumnTypes = array(1,1,1,2,2); + $aDisplayColumns = array("name","email", "mobile", "email_notification"); + $aStoreColumns = array("name","email", "mobile", "email_notification") ; + $aColumnNames = array("Name: ", "Email Address: ", "Mobile Number: ", "Email Notification: "); + $aDisplayColumnTypes = array(1,1,1,2); + $aDatabaseColumnTypes = array(1,1,1,2); // get list of User properties...name...text field...is_Sys_admin and is_unit_admin..checkboxes $oPattern = & new PatternEditableListFromQuery($sQuery, $default->owl_users_table, $aDisplayColumns, $aStoreColumns, $aColumnNames, $aDisplayColumnTypes, $aDatabaseColumnTypes) ; $oPattern->setUniqueName("userEdit"); - $oPattern->setColumnsRequired(array(1,0,0,0,0)); + $oPattern->setColumnsRequired(array(1,0,0,0)); $sToRender .= "\n"; $sToRender .= renderHeading(); -- libgit2 0.21.4