Skip to content

Commit

Permalink
Merge branch 'master' into feature/move-pear-libs-to-composer
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Sep 29, 2016
2 parents 89f76e5 + 1b3fd97 commit 09fd8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public_html/layout/denim/functions.php
Expand Up @@ -121,7 +121,7 @@ function theme_css_denim()
);

if (!empty($theme_var_denim['uikit_components'])) {
$uikit_components = array_unique($theme_var_denim['uikit_components']);
$uikit_components = array_merge($theme_var_denim['uikit_components']);
foreach ($uikit_components as $component => $value) {
if ($value === 1) {
$componame = str_replace('_', '-', $component);
Expand Down Expand Up @@ -171,7 +171,7 @@ function theme_js_files_denim()
);

if (!empty($theme_var_denim['uikit_components'])) {
$uikit_components = array_unique($theme_var_denim['uikit_components']);
$uikit_components = array_merge($theme_var_denim['uikit_components']);
foreach ($uikit_components as $component => $value) {
if ($value === 1) {
$componame = str_replace('_', '-', $component);
Expand Down

0 comments on commit 09fd8e7

Please sign in to comment.