Fix the last deprecation notices on class names for PHP 7+ (#26)
authorAndréas Lundgren <Adevade@users.noreply.github.com>
Mon, 24 Oct 2016 10:53:58 +0000 (12:53 +0200)
committeranuko <support@anuko.com>
Mon, 24 Oct 2016 10:53:58 +0000 (10:53 +0000)
* Modified classes: ttSysConfig, ttUser and CustomFields plugin

WEB-INF/lib/ttSysConfig.class.php
WEB-INF/lib/ttUser.class.php
plugins/CustomFields.class.php

index 56100b8..cb7637d 100644 (file)
@@ -39,7 +39,7 @@ class ttSysConfig {
   var $mdb2 = null;
 
   // Constructor.
-  function ttSysConfig($u_id) {
+  function __construct($u_id) {
     $this->u_id = $u_id;
     $this->mdb2 = getConnection();
   }
index 3f26962..6b6a44a 100644 (file)
@@ -54,7 +54,7 @@ class ttUser {
   var $rights = 0;              // A mask of user rights.
 
   // Constructor.
-  function ttUser($login, $id = null) {
+  function __construct($login, $id = null) {
     if (!$login && !$id) {
       // nothing to initialize
       return;
index e1b42b8..ddd1c4d 100644 (file)
@@ -37,7 +37,7 @@ class CustomFields {
   var $options = array(); // Array of options for a dropdown custom field.
   
   // Constructor.
-  function CustomFields($team_id) {
+  function __construct($team_id) {
        $mdb2 = getConnection();
        
        // Get fields.