Skip to content

Commit

Permalink
Merge pull request #336 from JoomShaper/hu-164
Browse files Browse the repository at this point in the history
Bootstrap updated to 5.2.3
  • Loading branch information
mi-prakash authored May 22, 2023
2 parents e282316 + 5f15399 commit 2088dfb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion plugins/system/helixultimate/helixultimate.php
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ private function getTemplateName($id = 0)

if (empty($id))
{
$query->where($db->quoteName('home') . ' = 1');
$query->where($db->quoteName('home') . ' = ' . $db->quote('1', false));
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/system/helixultimate/layout/settings/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ static public function getTemplateName()
$query->select($db->quoteName(array('template')));
$query->from($db->quoteName('#__template_styles'));
$query->where($db->quoteName('client_id') . ' = 0');
$query->where($db->quoteName('home') . ' = 1');
$query->where($db->quoteName('home') . ' = ' . $db->quote('1', false));
$db->setQuery($query);

return $db->loadObject()->template;
Expand Down
2 changes: 1 addition & 1 deletion plugins/system/helixultimate/src/Platform/Blog.php
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ private static function getTemplate()
$query->select($db->quoteName(array('template', 'params')));
$query->from($db->quoteName('#__template_styles'));
$query->where($db->quoteName('client_id') . ' = ' . $db->quote(0));
$query->where($db->quoteName('home') . ' = ' . $db->quote(1));
$query->where($db->quoteName('home') . ' = ' . $db->quote('1', false));

$db->setQuery($query);

Expand Down
2 changes: 1 addition & 1 deletion plugins/system/helixultimate/src/Platform/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static function getTemplateId($template) : int

if (Multilanguage::isEnabled())
{
$query->where($db->quoteName('home') . ' IN(' . $db->quote(Factory::getLanguage()->getTag()) . ', 1)');
$query->where($db->quoteName('home') . ' IN(' . $db->quote(Factory::getLanguage()->getTag()) . ', ' . $db->quote('1', false));
}

$db->setQuery($query);
Expand Down
4 changes: 2 additions & 2 deletions templates/shaper_helixultimate/css/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions templates/shaper_helixultimate/js/bootstrap.bundle.min.js

Large diffs are not rendered by default.

0 comments on commit 2088dfb

Please sign in to comment.