Skip to content

Commit

Permalink
Fixing #5622 - PHP 8.3 Deprecation Errors
Browse files Browse the repository at this point in the history
Errors and deprecation warnings with PHP 8.3.0
  • Loading branch information
TheWitness committed Jan 28, 2024
1 parent aeeaf7c commit 83e337c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Cacti CHANGELOG

1.2.27
-issue#5622: Errors and deprecation warnings with PHP 8.3.0
-issue#5638: Add tooltip info about IPv6 address
-issue#5649: Inapprorpiate use of PHP_OS in lib/ping.php on Windows Platform

Expand Down
2 changes: 1 addition & 1 deletion cactid.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function sig_handler($signo) {

/* we do not need so much memory */
ini_set('memory_limit', '-1');
ini_set('max_execution_time', '-1');
ini_set('max_execution_time', '0');

// default values
$hostname = gethostname();
Expand Down
2 changes: 1 addition & 1 deletion graph_templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
include_once('./lib/template.php');
include_once('./lib/utility.php');

ini_set('max_execution_time', '-1');
ini_set('max_execution_time', '0');

$graph_actions = array(
1 => __('Delete'),
Expand Down

0 comments on commit 83e337c

Please sign in to comment.