Skip to content
Snippets Groups Projects

Fixes #410 - Create module using vtlib in all Profiles the "Create" option is disabled by default.

Merged Fixes #410 - Create module using vtlib in all Profiles the "Create" option is disabled by default.
Merged Satish requested to merge satish.dvnk/vtigercrm:v7 into 7.0.0
2 files
+ 4
1
Compare changes
  • Side-by-side
  • Inline
Files
2
  • bf7b4e44
    Fixes #410 - Create module using vtlib in all Profiles the "Create" option is disabled by default. · bf7b4e44
    Satish authored
    Fixes #443 - Star Follow
@@ -84,7 +84,9 @@ class Home_Module_Model extends Vtiger_Module_Model {
* @param <String> $type - comments, updates or all
* @return <Array>
*/
public function getHistory($pagingModel, $type='all', $userId='all', $dateFilter='') {
public function getHistory($pagingModel, $type='', $userId='', $dateFilter='') {
if(!$userId) $userId = 'all';
if(!$type) $type = 'all';
//TODO: need to handle security
$comments = array();
if($type == 'all' || $type == 'comments') {
Loading