[Vtigercrm-commits] [vtiger-commits] r10642 - /vtigercrm/branches/5.0.3/modules/Notes/Notes.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Wed Apr 11 10:26:23 EDT 2007
Author: saraj
Date: Wed Apr 11 08:26:18 2007
New Revision: 10642
Log:
Related To is not working in Edit view of Notes. Fixes #3464
Modified:
vtigercrm/branches/5.0.3/modules/Notes/Notes.php
Modified: vtigercrm/branches/5.0.3/modules/Notes/Notes.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Notes/Notes.php (original)
+++ vtigercrm/branches/5.0.3/modules/Notes/Notes.php Wed Apr 11 08:26:18 2007
@@ -29,6 +29,7 @@
// Note is used to store customer information.
class Notes extends CRMEntity {
+
var $log;
var $db;
@@ -64,7 +65,6 @@
//Added these variables which are used as default order by and sortorder in ListView
var $default_order_by = 'modifiedtime';
var $default_sort_order = 'ASC';
-
function Notes() {
$this->log = LoggerManager::getLogger('notes');
$this->log->debug("Entering Notes() method ...");
@@ -75,7 +75,8 @@
function save_module($module)
{
-
+
+ $insertion_mode = $this->mode;
//inserting into vtiger_senotesrel
if(isset($this->column_fields['parent_id']) && $this->column_fields['parent_id'] != '')
{
More information about the vtigercrm-commits
mailing list