Skip to content

Commit

Permalink
Tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
wrongecho committed Oct 28, 2024
1 parent 9491643 commit 91c01d2
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion admin_custom_link.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
$custom_link_order_display = $custom_link_order;
}
$custom_link_location = intval($row['custom_link_location']);
if ($custom_link_location == 1) {
if ($custom_link_location == 1) {
$custom_link_location_display = "Main Side Nav";
} else {
$custom_link_location_display = "Top Nav";
Expand Down
2 changes: 1 addition & 1 deletion admin_ticket_status_add_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
</form>
</div>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion admin_ticket_status_edit_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@
</form>
</div>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion admin_ticket_template_edit_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</div>
<input type="text" class="form-control" name="description" value="<?php echo $ticket_template_description; ?>" placeholder="Short description">
</div>
</div>
</div>

</div>
<div class="modal-footer bg-white">
Expand Down
8 changes: 4 additions & 4 deletions calendar_events.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="card-body">

<form>
<?php
<?php
$sql = mysqli_query($mysqli, "SELECT * FROM calendars");
while ($row = mysqli_fetch_array($sql)) {
$calendar_id = intval($row['calendar_id']);
Expand All @@ -40,9 +40,9 @@
<i class="fas fa-fw fa-circle mr-2" style="color:<?php echo $calendar_color; ?>;"></i><?php echo $calendar_name; ?>
<button type="button" class="btn btn-link btn-sm float-right" data-toggle="modal" data-target="#editCalendarModal<?php echo $calendar_id; ?>"><i class="fas fa-fw fa-pencil-alt text-secondary"></i></button>
</div>
<?php
require "calendar_edit_modal.php";
}
<?php
require "calendar_edit_modal.php";
}
?>
</form>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client_asset_bulk_add_ticket_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
</div>
<?php } ?>

</div>
</div>

<div class="modal-footer bg-white">
<button type="submit" name="bulk_add_asset_ticket" class="btn btn-primary text-bold"><i class="fas fa-check mr-2"></i>Create</button>
Expand Down

0 comments on commit 91c01d2

Please sign in to comment.