Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
pepiuox committed Oct 3, 2023
1 parent 63ccba3 commit a16983c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion admin/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<?php
require_once '../elements/menu.php';
?>
<div class='container'>
<div class="container">
<?php
echo decodeContent($content) . "\n";
?>
Expand Down
2 changes: 1 addition & 1 deletion admin/views/pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function mkeyup() {
// echo '<meta http-equiv="refresh" content="5; url=builder.php?id=' . $id . '" />';
}
?>
<div class='container'>
<div class="container">
<div class="row">
<div class="card py-3">
<div class="card-body">
Expand Down
4 changes: 2 additions & 2 deletions admin/views/themes.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<?php
//This is temporal file only for add new row
if (isset($_POST['theme_settings'])) {
$container = $_POST['container'];
$container = $_POST["container"];
$spacer = $_POST['spacer'];
$radius = $_POST['radius'];
$radius_sm = $_POST['radius_sm'];
Expand All @@ -96,7 +96,7 @@
$ts = $rts->fetch_assoc();
?>
<form class="row form-horizontal" role="form" id="add_theme_settings" method="POST">
<?php enum_values('theme_settings', 'container', $ts['container']); ?>
<?php enum_values('theme_settings', "container", $ts["container"]); ?>
<?php enum_values('theme_settings', 'spacer', $ts['spacer']); ?>
<div class="form-group">
<label for="radius" class ="control-label col-sm-3">Radius:</label>
Expand Down
2 changes: 1 addition & 1 deletion admin/views/volunteer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class='container'>
<div class="container">
<div class="row">
<div class="card py-3">
<div class="card-body">
Expand Down
2 changes: 1 addition & 1 deletion elements/menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if ($rmopt['fluid'] === 'yes') {
$fluid = 'container-fluid';
} else {
$fluid = 'container';
$fluid = "container";
}

if ($rmopt['placement'] === 'top') {
Expand Down
2 changes: 1 addition & 1 deletion elements/menu_post.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
if ($rmopt['fluid'] === 'yes') {
$fluid = 'container-fluid';
} else {
$fluid = 'container';
$fluid = "container";
}

if ($rmopt['placement'] === 'top') {
Expand Down
2 changes: 1 addition & 1 deletion elements/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@
<?php
require_once 'navbar.php';
?>
<div class='container'>
<div class="container">
<div class="row">
<div class="col-12 text-center">
<?php echo $initweb . ' - ' . SITE_PATH; ?>
Expand Down

0 comments on commit a16983c

Please sign in to comment.