Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
phpldapadmin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian PHP Team
PEAR
phpldapadmin
Commits
e2f6137e
Verified
Commit
e2f6137e
authored
2 months ago
by
William Desportes
Browse files
Options
Downloads
Patches
Plain Diff
Fix PHP 8.4 error: Creation of dynamic property AttributeType
Closes: #1100771
parent
7d3b87e9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+7
-0
7 additions, 0 deletions
debian/changelog
debian/patches/Fix-dynamic-property-PHP-8.2.patch
+16
-1
16 additions, 1 deletion
debian/patches/Fix-dynamic-property-PHP-8.2.patch
with
23 additions
and
1 deletion
debian/changelog
+
7
−
0
View file @
e2f6137e
phpldapadmin (1.2.6.7-3) UNRELEASED; urgency=medium
* Fix PHP 8.4 error: Creation of dynamic property AttributeType
(Closes: #1100771)
-- William Desportes <williamdes@wdes.fr> Mon, 24 Mar 2025 16:04:06 +0100
phpldapadmin (1.2.6.7-2) unstable; urgency=medium
* Add a patch for PHP 8.4 E_DEPRECATED
* Add a patch to stop using xml_set_object for PHP 8.4 (Closes: #1089729)
...
...
This diff is collapsed.
Click to expand it.
debian/patches/Fix-dynamic-property-PHP-8.2.patch
+
16
−
1
View file @
e2f6137e
...
...
@@ -13,6 +13,7 @@ Subject: Fix Creation of dynamic property
Origin: vendor
Forwarded: https://github.com/leenooks/phpLDAPadmin/pull/202
Bug-Debian: https://bugs.debian.org/1100771
---
lib/PLAAttribute.php | 1 +
lib/Query.php | 1 +
...
...
@@ -20,7 +21,8 @@ Forwarded: https://github.com/leenooks/phpLDAPadmin/pull/202
lib/TemplateRender.php | 2 ++
lib/import_functions.php | 1 +
lib/page.php | 1 +
6 files changed, 7 insertions(+)
lib/schema_functions.php | 2 +-
7 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/lib/PLAAttribute.php b/lib/PLAAttribute.php
index a2f0091..dfcc8e6 100644
...
...
@@ -95,3 +97,16 @@ index 43efc2a..e8241a9 100644
class page {
# pre-HTML headers
protected $_pageheader;
diff --git a/lib/schema_functions.php b/lib/schema_functions.php
index 6218064..70c6e8b 100644
--- a/lib/schema_functions.php
+++ b/lib/schema_functions.php
@@ -24,7 +24,7 @@
abstract class SchemaItem {
# The description of this schema item.
protected $description = '';
# Boolean value indicating whether this objectClass is obsolete
- private $is_obsolete = false;
+ protected $is_obsolete = false;
public function setOID($oid) {
if (DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment