- Archivieren von Unoconv Dokumenten eingebaut

- Archivieren des Diplomasupplements
This commit is contained in:
oesi
2015-01-30 13:41:37 +01:00
parent 4bbc01d30c
commit 18f8c1d973
4 changed files with 192 additions and 49 deletions
+3 -2
View File
@@ -70,7 +70,7 @@ class vorlage extends basis_db
if($studiengang_kz!='')
{
$qry = "SELECT
tbl_vorlagestudiengang.*, tbl_vorlage.mimetype
tbl_vorlagestudiengang.*, tbl_vorlage.mimetype, tbl_vorlage.bezeichnung
FROM
public.tbl_vorlagestudiengang
JOIN public.tbl_vorlage USING(vorlage_kurzbz)
@@ -93,7 +93,7 @@ class vorlage extends basis_db
else
{
$qry = "SELECT
tbl_vorlagestudiengang.*, tbl_vorlage.mimetype
tbl_vorlagestudiengang.*, tbl_vorlage.mimetype, tbl_vorlage.bezeichnung
FROM
public.tbl_vorlagestudiengang
JOIN public.tbl_vorlage USING(vorlage_kurzbz)
@@ -115,6 +115,7 @@ class vorlage extends basis_db
$this->version = $row->version;
$this->text = $row->text;
$this->mimetype = $row->mimetype;
$this->bezeichnung = $row->bezeichnung;
return true;
}
else