Skip to content

Commit

Permalink
Rename pagination_head.php to filter_header.php as this is a more sui…
Browse files Browse the repository at this point in the history
…table name for its function
  • Loading branch information
johnnyq committed Sep 20, 2024
1 parent c9f3d17 commit 8498f01
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pagination_head.php → filter_header.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
* Pagination - Head
* Filter - Head
* Sets the paging/sort for use in limit/order by
* Sets the default search query from GET to $q
*
Expand Down
2 changes: 1 addition & 1 deletion inc_all.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@

require_once "inc_alert_feedback.php";

require_once "pagination_head.php";
require_once "filter_header.php";

?>
2 changes: 1 addition & 1 deletion inc_all_admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

require_once "inc_alert_feedback.php";

require_once "pagination_head.php";
require_once "filter_header.php";
2 changes: 1 addition & 1 deletion inc_all_client.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@

require_once "inc_client_top_head.php";

require_once "pagination_head.php";
require_once "filter_header.php";

?>

Expand Down
2 changes: 1 addition & 1 deletion inc_all_reports.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

require_once "inc_alert_feedback.php";

require_once "pagination_head.php";
require_once "filter_header.php";

// Set variable default values
$largest_income_month = 0;
Expand Down
2 changes: 1 addition & 1 deletion inc_all_user.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

require_once "inc_alert_feedback.php";

require_once "pagination_head.php";
require_once "filter_header.php";

0 comments on commit 8498f01

Please sign in to comment.