Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
517
Issue boards
Milestones
Wiki
Code
Merge requests
83
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
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
vtiger
vtigercrm
Merge requests
!865
fix
#1710
Determining short_open_tag not correct
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix
#1710
Determining short_open_tag not correct
vicus/vtigercrm:determine_short_open_tag
into
master
Overview
0
Commits
1
Changes
Merged
Vicus eBusiness Solutions B.V.
requested to merge
vicus/vtigercrm:determine_short_open_tag
into
master
2 years ago
Overview
0
Commits
1
Changes
-
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
b0fb4ba1
1 commit,
2 years ago
+
5
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
vtlib/Vtiger/Functions.php
+
5
−
4
Options
@@ -662,7 +662,8 @@ class Vtiger_Functions {
}
//metadata check
$shortTagSupported = ini_get('short_open_tag') ? true : false;
$shortTag = strtolower(ini_get('short_open_tag'));
$shortTagSupported = ($shortTag == '1' || $shortTag == 'on') ? TRUE : FALSE;
if ($saveimage == 'true') {
$tmpFileName = $file_details['tmp_name'];
if($file_details['type'] == 'image/jpeg' || $file_details['type'] == 'image/tiff') {
@@ -1582,12 +1583,12 @@ class Vtiger_Functions {
}
return $publicUrl;
}
/**
* Function to get the attachmentsid to given crmid
* @param type $crmid
* @param type $webaservice entity id
* @return <Array>
* @return <Array>
*/
static function getAttachmentIds($crmid, $WsEntityId) {
$adb = PearDatabase::getInstance();
@@ -1604,7 +1605,7 @@ class Vtiger_Functions {
}
return $attachmentIds;
}
static function generateTrackingURL($params = []){
$options = array(
'handler_path' => 'modules/Emails/handlers/Tracker.php',
Loading