diff --git a/frontend/views/catalog/products.php b/frontend/views/catalog/products.php index 591366e..c336188 100755 --- a/frontend/views/catalog/products.php +++ b/frontend/views/catalog/products.php @@ -38,6 +38,13 @@ $this->registerJsFile(Yii::getAlias('@web/js/ion.rangeSlider.js'),[ 'position' => View::POS_END, 'depends' => ['yii\web\JqueryAsset'] ]); + + +function my_mb_ucfirst($str) { + $str = strtolower($str); + $fc = mb_strtoupper(mb_substr($str, 0, 1)); + return $fc.mb_substr($str, 1); +} ?>