mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 11:00:40 +08:00
Squashed 'public/legacy/' changes from a403361326..60ccef0448
60ccef0448 SuiteCRM 7.12.8 Release 36b2069cc8 Update composer packages b33f4c68df Fix #6756 - Add Label to Dynamic Fields 371f038c30 Fix #9803 - Workflow test returns boolean c453e9fe84 Fix #9804 - Update jquery-ui to 1.13.2 be22920ec5 Fix #9800 Fix issue with send as system being hidden efd1dbe647 fix escapeField where $cell string is empty c0b4d56199 Turn privates to protecteds to fix Emailtemplate overrides dbadb85136 Turn private to protected to fix SendMail AOW_Action overrides eaefb2ba62 Fix #7030 - Contains, Startwith and End with fixes Workflow cfef8eaba1 Fix #9650 - Deprecated constructor method is being called in Calendar f0121f4da7 Fix #9658 - SuiteCRM add duplicate dashlet when filter is used aeb1c3ffbe Fix #9668 - It is not possible to use a custom template for password change a2abbde8a8 Fix #9672 - Bug in CSS class causes bad button display be6f2de05a Fix #9674 - Error when importing (creating and updating) a record with ID already deleted in the database 57c40c6f71 Fix #9688: Use the same browser title for the regular views as the Ajax UI d6856805a1 Fix #9698 - Do not delete the subject when editing a tracking url from the campaign assistant 5bc6c80b35 Fix #9704 - Missing relationship definition in SurveysQuestionResponses 5d17f027a3 Fix #9706 - ModuleBuilder doesn't save language files in the correct path d85edb029a Fix #9711 - Update date_modified field when deleting a Target List 4fd11b676e Fix #9721 - Adding Years option to aow_date_type_list in Workflow conditions 0ddb1c523c Fix #9728 - cron.php fails with "must be compatible" error from AOPInboundEmail.php bd90cb2d71 Fix #9730 - cron.php fails with fatal TypeError using PHP 8 2eb6c16df9 Fix #9753 - Do not save white spaces in SMTP data 3ff0092441 Fix #9781 Fetch existing Call/Meeting Reminder data in quickeditview of Calendar 51b606d90f Fix #9588 Flag "Display Employee Record" doesn't work properly 063def6acb Fix #7827 - Error resetting modules git-subtree-dir: public/legacy git-subtree-split: 60ccef0448b22658c89f5c501f62d68aa209dcea
This commit is contained in:
parent
3fb6e4bb8e
commit
88ca186f1a
40 changed files with 10832 additions and 113 deletions
|
@ -865,9 +865,9 @@ class AOW_WorkFlow extends Basic
|
|||
case "Less_Than": return $var1 < $var2;
|
||||
case "Greater_Than_or_Equal_To": return $var1 >= $var2;
|
||||
case "Less_Than_or_Equal_To": return $var1 <= $var2;
|
||||
case "Contains": return strpos($var1, $var2);
|
||||
case "Starts_With": return strrpos($var1, $var2, -strlen($var1));
|
||||
case "Ends_With": return strpos($var1, $var2, strlen($var1) - strlen($var2));
|
||||
case "Contains": return strpos(strtolower($var1), strtolower($var2)) !== false;
|
||||
case "Starts_With": return substr(strtolower($var1), 0, strlen($var2) ) === strtolower($var2);
|
||||
case "Ends_With": return substr(strtolower($var1), -strlen($var2) ) === strtolower($var2);
|
||||
case "is_null": return $var1 == '';
|
||||
case "One_of":
|
||||
if (is_array($var1)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue