mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
Getter/Setter entfernt da diese zu Problemen in Verbindung mit der Funktion getTimestamp führen
This commit is contained in:
@@ -48,26 +48,6 @@ class studiensemester extends basis_db
|
||||
$this->load($studiensemester_kurzbz);
|
||||
}
|
||||
|
||||
public function __get($property)
|
||||
{
|
||||
if(property_exists($this, $property))
|
||||
{
|
||||
return $this->$property;
|
||||
}
|
||||
else
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
public function __set($property, $value)
|
||||
{
|
||||
if(property_exists($this, $property))
|
||||
{
|
||||
$this->$property = $value;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Laedt das Studiensemester mit der uebergebenen Kurzbz
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user