PHP7 compatibility fixes.
[fa-stable.git] / includes / ui / simple_crud_class.inc
index 46b9fbfc3e040d5ac152dcee8c1f88013cf6a0c0..40c8ebea6b29b5653b2a746284015329473dee33 100644 (file)
@@ -26,7 +26,7 @@ class simple_crud {
        var $dec;
        //
        //
-       function simple_crud($name, $fields = null)
+       function __construct($name, $fields = null)
        {
                $this->name = $name;
                $this->pre_handlers = array(
@@ -106,8 +106,6 @@ class simple_crud {
        {
                global $Ajax;
 
-               $sel_name = $this->name.'_id';
-
                // list controls lookup
                foreach (array_keys($this->pre_handlers) as $m) {
                        if (isset($_POST[$this->name.$m])) {
@@ -211,9 +209,9 @@ class simple_crud {
                if ($async === 'both') {
                        $async = 'default'; $cancel = 'cancel';
                } 
-               else if ($async === 'default')
+               elseif ($async === 'default')
                        $cancel = true;
-               else if ($async === 'cancel')
+               elseif ($async === 'cancel')
                        $async = true;
                echo "<center>";
 
@@ -376,4 +374,3 @@ class simple_crud {
        }
 };
 
-?>
\ No newline at end of file