diff --git a/aplikacia/classes/vypisUdaje.php b/aplikacia/classes/vypisUdaje.php
index 90833f8..8505f50 100644
--- a/aplikacia/classes/vypisUdaje.php
+++ b/aplikacia/classes/vypisUdaje.php
@@ -5,22 +5,22 @@ class vypisUdaje{
private static $_table;
private function __construct($data){
- $this->_table = '
' . "Meno | email | Miestnost | Klapka | Katedra |
";
+ self::$_table = '";
+ self::$_table .= "
";
}
public static function createTable($data){
- self::$_table = new vypisUdaje($data);
- return self::$_table;
+ $new_table = new vypisUdaje($data);
+ return $new_table;
}
public function show() {
- echo $this->_table;
+ echo self::$_table;
}
public function getCSV($data) {