mirror of
https://gh.wpcy.net/https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-04-29 09:42:17 +08:00
Merge commit 'de4bf25cb3' into release/8.4.0-beta
# Conflicts:
# public/legacy/data/SugarBean.php
# public/legacy/include/Smarty/plugins/function.sugarvar.php
# public/legacy/include/SugarDateTime.php
# public/legacy/include/database/MysqliManager.php
# public/legacy/modules/Alerts/metadata/listviewdefs.php
# public/legacy/modules/SugarFeed/Dashlets/SugarFeedDashlet/SugarFeedDashlet.php
# public/legacy/modules/Trackers/metadata/SearchFields.php
# public/legacy/modules/Trackers/metadata/listviewdefs.php
# public/legacy/modules/UpgradeWizard/SugarMerge/EditViewMerge.php
# public/legacy/suitecrm_version.php
25 lines
541 B
PHP
25 lines
541 B
PHP
<?php
|
|
/**
|
|
* Smarty plugin
|
|
*
|
|
* @package Smarty
|
|
* @subpackage PluginsModifier
|
|
*/
|
|
|
|
/**
|
|
* Smarty explode modifier plugin
|
|
* Type: modifier
|
|
* Name: explode
|
|
* Purpose: split a string by a string
|
|
*
|
|
* @param string $separator
|
|
* @param string $string
|
|
* @param int|null $limit
|
|
*
|
|
* @return array
|
|
*/
|
|
function smarty_modifier_explode($separator, $string, ?int $limit = null)
|
|
{
|
|
// provide $string default to prevent deprecation errors in PHP >=8.1
|
|
return explode($separator, $string ?? '', $limit ?? PHP_INT_MAX);
|
|
}
|