mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 19:34:52 +00:00
Number of Records per page is now configurable
This commit is contained in:
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,11 +3,11 @@
|
|||||||
//Paging
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,9 +6,6 @@ $sql_software = mysqli_query($mysqli,"SELECT * FROM software WHERE contact_id =
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="modal" id="contactDetailsModal<?php echo $contact_id; ?>" tabindex="-1">
|
<div class="modal" id="contactDetailsModal<?php echo $contact_id; ?>" tabindex="-1">
|
||||||
<div class="modal-dialog modal-lg">
|
<div class="modal-dialog modal-lg">
|
||||||
<div class="modal-content bg-dark">
|
<div class="modal-content bg-dark">
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,11 +7,11 @@
|
|||||||
//Paging
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,13 +55,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
7
logs.php
7
logs.php
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,14 @@
|
|||||||
|
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,13 +2,15 @@
|
|||||||
|
|
||||||
//Rebuild URL
|
//Rebuild URL
|
||||||
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
$url_query_strings_sb = http_build_query(array_merge($_GET,array('sb' => $sb, 'o' => $o)));
|
||||||
|
|
||||||
|
//Paging
|
||||||
if(isset($_GET['p'])){
|
if(isset($_GET['p'])){
|
||||||
$p = intval($_GET['p']);
|
$p = intval($_GET['p']);
|
||||||
$record_from = (($p)-1)*10;
|
$record_from = (($p)-1)*$config_records_per_page;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
}else{
|
}else{
|
||||||
$record_from = 0;
|
$record_from = 0;
|
||||||
$record_to = 10;
|
$record_to = $config_records_per_page;
|
||||||
$p = 1;
|
$p = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user