PORTNAME= phpldapadmin
DISTVERSION= 1.2.6.6
PORTREVISION= 1
CATEGORIES= net www
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
--- lib/Template.php.orig 2023-04-01 13:46:16 UTC
+++ lib/Template.php
@@ -56,6 +56,8 @@ class Template extends xmlTemplate {
# Template RDN attributes
private $rdn;
+ private $askcontainer;
+
public function __construct($server_id,$name='',$filename=null,$type=null,$id=null) {
parent::__construct($server_id,$name,$filename,$type,$id);
--- lib/TemplateRender.php.orig 2023-04-01 13:46:16 UTC
+++ lib/TemplateRender.php
@@ -16,6 +16,9 @@ class TemplateRender extends PageRender {
# Page number
private $pagelast;
+ private $url_base;
+ private $layout;
/** CORE FUNCTIONS **/
/**
--- lib/page.php.orig 2023-04-01 13:46:16 UTC
+++ lib/page.php
@@ -25,6 +25,10 @@ class page {
# Default values array.
protected $_default;
+ private $index;
+ private $sysmsg;
+ private $_block;
public function __construct($index=null) {
if (defined('DEBUG_ENABLED') && DEBUG_ENABLED && (($fargs=func_get_args())||$fargs='NOARGS'))
debug_log('Entered (%%)',129,0,__FILE__,__LINE__,__METHOD__,$fargs);
--- lib/schema_functions.php.orig 2023-04-01 13:46:16 UTC
+++ lib/schema_functions.php
@@ -734,6 +734,8 @@ class AttributeType extends SchemaItem {
# This attribute has been forced a MAY attribute by the configuration.
private $forced_as_may = false;
+ private $is_obsolete;
* Creates a new AttributeType object from a raw LDAP AttributeType string.
*/