#3354 : LanguagePt update by Get_it
[lhc/web/wiklou.git] / includes / Group.php
index cfaeb46..e820135 100644 (file)
@@ -47,7 +47,7 @@ class Group {
                }
 
                // be sure it's an integer
-               $this->id = IntVal($this->id);
+               $this->id = intval($this->id);
                
                if($this->id) {
                        // By ID
@@ -341,7 +341,7 @@ class Group {
        
        function getId() { return $this->id; }
        function setId($id) {
-               $this->id = IntVal($id);
+               $this->id = intval($id);
                $this->dataLoaded = false;
        }