Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Madhuk
vtigercrm
Commits
f90a5cc1
Commit
f90a5cc1
authored
5 years ago
by
Greeshma
Browse files
Options
Downloads
Patches
Plain Diff
warning_fix
parent
4a41c8da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
index.php
+0
-2
0 additions, 2 deletions
index.php
modules/Vtiger/dashboards/CalendarActivities.php
+1
-1
1 addition, 1 deletion
modules/Vtiger/dashboards/CalendarActivities.php
modules/Vtiger/dashboards/OverdueActivities.php
+1
-1
1 addition, 1 deletion
modules/Vtiger/dashboards/OverdueActivities.php
with
2 additions
and
4 deletions
index.php
+
0
−
2
View file @
f90a5cc1
...
...
@@ -8,8 +8,6 @@
* All Rights Reserved.
************************************************************************************/
ini_set
(
'error_reporting'
,
6135
);
ini_set
(
'display_errors'
,
'on'
);
//Overrides GetRelatedList : used to get related query
//TODO : Eliminate below hacking solution
include_once
'config.php'
;
...
...
This diff is collapsed.
Click to expand it.
modules/Vtiger/dashboards/CalendarActivities.php
+
1
−
1
View file @
f90a5cc1
...
...
@@ -24,7 +24,7 @@ class Vtiger_CalendarActivities_Dashboard extends Vtiger_IndexAjax_View {
$user
=
$request
->
get
(
'type'
);
$moduleModel
=
Vtiger_Module_Model
::
getInstance
(
$moduleName
);
$calendarActivities
=
$moduleModel
->
getCalendarActivities
(
'upcoming'
,
$pagingModel
,
$user
);
$calendarActivities
=
$moduleModel
->
getCalendarActivities
(
'upcoming'
,
$pagingModel
,
$user
,
$recordId
=
null
);
$widget
=
Vtiger_Widget_Model
::
getInstance
(
$linkId
,
$currentUser
->
getId
());
...
...
This diff is collapsed.
Click to expand it.
modules/Vtiger/dashboards/OverdueActivities.php
+
1
−
1
View file @
f90a5cc1
...
...
@@ -23,7 +23,7 @@ Class Vtiger_OverdueActivities_Dashboard extends Vtiger_IndexAjax_View {
$user
=
$request
->
get
(
'type'
);
$moduleModel
=
Vtiger_Module_Model
::
getInstance
(
$moduleName
);
$overDueActivities
=
$moduleModel
->
getCalendarActivities
(
'overdue'
,
$pagingModel
,
$user
);
$overDueActivities
=
$moduleModel
->
getCalendarActivities
(
'overdue'
,
$pagingModel
,
$user
,
$recordId
=
null
);
$widget
=
Vtiger_Widget_Model
::
getInstance
(
$linkId
,
$currentUser
->
getId
());
$viewer
=
$this
->
getViewer
(
$request
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment