[Vtigercrm-commits] [vtiger-commits] r3985 - in /vtigercrm/trunk: Smarty/templates/UserEditView.tpl modules/Users/User.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Tue Feb 28 03:00:27 EST 2006


Author: saraj
Date: Tue Feb 28 01:00:22 2006
New Revision: 3985

Log:
issue in the tagcloud has been fixed

Modified:
    vtigercrm/trunk/Smarty/templates/UserEditView.tpl
    vtigercrm/trunk/modules/Users/User.php

Modified: vtigercrm/trunk/Smarty/templates/UserEditView.tpl
==============================================================================
--- vtigercrm/trunk/Smarty/templates/UserEditView.tpl (original)
+++ vtigercrm/trunk/Smarty/templates/UserEditView.tpl Tue Feb 28 01:00:22 2006
@@ -152,8 +152,13 @@
 						<td class="dvtCellLabel" align="right">{$UMOD.LBL_HOME_PHONE}</td>
 						<td class="dvtCellInfo"><input type="text" name="phone_home" value='{$PHONE_HOME}' class="detailedViewTextBox"  onfocus="this.className='detailedViewTextBoxOn'" onblur="this.className='detailedViewTextBox'" /></td>
 					     </tr>
-					     <tr>
-					        <td class="dvtCellLabel" align="right">{$UMOD.LBL_SIGNATURE}</td>
+						 <tr><td class="dvtCellLabel" align="right">
+						 {$UMOD.LBL_TAG_CLOUD}
+						 </td>
+						 <td colspan=3 class="dvtCellInfo"><input name='tagcloud' type="text" size='40' maxlength='250' value="{$CLOUD_TAG}" class="detailedViewTextBox"  onfocus="this.className='detailedViewTextBoxOn'" onblur="this.className='detailedViewTextBox'"></td>
+						 </tr>
+					     <tr>
+					    <td class="dvtCellLabel" align="right">{$UMOD.LBL_SIGNATURE}</td>
 						<td class="dvtCellInfo"><textarea name="signature" rows="3" class="detailedViewTextBox"  onfocus="this.className='detailedViewTextBoxOn'" onblur="this.className='detailedViewTextBox'" >{$SIGNATURE}</textarea></td>
 						<td class="dvtCellLabel" align="right">{$UMOD.LBL_NOTES}</td>
 						<td span class="dvtCellInfo"><textarea name="description" rows="3" class="detailedViewTextBox"  onfocus="this.className='detailedViewTextBoxOn'" onblur="this.className='detailedViewTextBox'" >{$DESCRIPTION}</textarea>

Modified: vtigercrm/trunk/modules/Users/User.php
==============================================================================
--- vtigercrm/trunk/modules/Users/User.php (original)
+++ vtigercrm/trunk/modules/Users/User.php Tue Feb 28 01:00:22 2006
@@ -585,7 +585,7 @@
 		{
 			$entries=array();
 			$id=$this->db->query_result($result,$i-1,'id');
-			$entries[]='<a href="index.php?action=EditView&return_action=ListView&return_module=Users&module=Users&parenttab=Settings&record='.$id.'"><img src="'.$image_path.'edit.gif" border="0" alt="Edit" title="Edit"/></a>&nbsp;&nbsp;<a href="#"><img src="'.$image_path.'del.gif" border="0"  alt="Delete" title="Delete"/></a>';
+			$entries[]='<a href="index.php?action=EditView&return_action=ListView&return_module=Users&module=Users&parenttab=Settings&record='.$id.'"><img src="'.$image_path.'edit.gif" border="0" alt="Edit" title="Edit"/></a>&nbsp;&nbsp;<a href="index.php?return_module=Users&return_action=ListView&module=Users&action=UserDeleteStep1&record='.$id.'"><img src="'.$image_path.'del.gif" border="0"  alt="Delete" title="Delete"/></a>';
 			$entries[]=$this->db->query_result($result,$i-1,'first_name').' '.$this->db->query_result($result,$i-1,'last_name');
 			$entries[]='<a href="index.php?action=DetailView&module=Users&parenttab=Settings&record='.$id.'">'.$this->db->query_result($result,$i-1,'user_name').'</a>';
 			$entries[]=$this->db->query_result($result,$i-1,'department');





More information about the vtigercrm-commits mailing list