Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tidying #1095

Merged
merged 1 commit into from
Oct 28, 2024
Merged

Tidying #1095

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading