d4a83eff40
net/phpldapadmin (version 1) was written some years ago. The developer of PLA (https://github.com/leenooks/phpLDAPadmin) officially dropped support for PLA1, but PLA2 is still not full functional as PLA1. I've made small patches which enable support for php84 (changes of some builtin php functions, declarations of variables and so on). With these patches PLA1 (still) is working corectly. PR: 287238 Event: Wiesbaden Hackathon 202604
18 lines
450 B
PHP
18 lines
450 B
PHP
--- lib/Query.php.orig 2024-01-10 22:23:54 UTC
|
|
+++ lib/Query.php
|
|
@@ -15,6 +15,14 @@ class Query extends xmlTemplate {
|
|
class Query extends xmlTemplate {
|
|
protected $description = '';
|
|
public $results = array();
|
|
+ public $base = "";
|
|
+ public $dn = "";
|
|
+ public $filter = "";
|
|
+ public $icon = "";
|
|
+ public $resultsdata = array();
|
|
+ public $scope = "";
|
|
+ public $title = "";
|
|
+ public $visible = "";
|
|
|
|
/**
|
|
* Main processing to store the template.
|