Subversion-Projekte lars-tiefland.ci

Revision

Revision 1826 | Revision 1836 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 1826 Revision 1827
Zeile 3... Zeile 3...
3
/**
3
/**
4
 *
4
 *
5
 * @package WebanOS CI
5
 * @package WebanOS CI
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
7
 * @copyright 2016
7
 * @copyright 2016
8
 * @version $Rev: 1826 $
8
 * @version $Rev: 1827 $
9
 */
9
 */
Zeile 10... Zeile 10...
10
 
10
 
11
/**
11
/**
12
 * Auspraegung_model
12
 * Auspraegung_model
13
 * 
13
 * 
14
 * @package WebanOS CI
14
 * @package WebanOS CI
15
 * @author Lars Tiefland
15
 * @author Lars Tiefland
16
 * @copyright 2016
16
 * @copyright 2016
17
 * @version $Id: Auspraegung_model.php 1826 2016-12-21 19:16:15Z lars $
17
 * @version $Id: Auspraegung_model.php 1827 2016-12-21 19:17:06Z lars $
18
 * @access public
18
 * @access public
19
 */
19
 */
20
class Auspraegung_model extends CI_Model
20
class Auspraegung_model extends CI_Model
21
{
21
{
Zeile 65... Zeile 65...
65
				auspraegung
65
				auspraegung
66
			WHERE
66
			WHERE
67
				id=".$id."
67
				id=".$id."
68
		";
68
		";
69
		$res = $this->db->query($sql);
69
		$res = $this->db->query($sql);
70
		$row = $res->unbuffered_row($row);
70
		$row = $res->unbuffered_row('array');
71
		return $row;
71
		return $row;
72
	}
72
	}
73
}
73
}
Zeile 74... Zeile 74...
74
 
74
 
75
?>
75
?>