Skip to content

Commit

Permalink
AjaxController: fixed some PHP 8.2 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
xenocrat committed Dec 1, 2022
1 parent 3d908fe commit 23d3311
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions includes/controller/Ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
* The logic controlling AJAX requests.
*/
class AjaxController implements Controller {
# Array: $urls
# An array of clean URL => dirty URL translations.
public $urls = array();

# Boolean: $displayed
# Has anything been displayed?
public $displayed = false;

# Boolean: $clean
# Does this controller support clean URLs?
public $clean = false;
Expand Down

0 comments on commit 23d3311

Please sign in to comment.