diff --git a/application/controllers/system/infocenter/InfoCenter.php b/application/controllers/system/infocenter/InfoCenter.php
index 3d0b7f6c3..4662fbc40 100644
--- a/application/controllers/system/infocenter/InfoCenter.php
+++ b/application/controllers/system/infocenter/InfoCenter.php
@@ -671,7 +671,7 @@ class InfoCenter extends Auth_Controller
$listFiltersNotSent = array();
$listCustomFilters = array();
- $filtersSent = $this->FiltersModel->getFilterList('infocenter', 'PersonActions', '%InfoCenterSentApplication%');
+ $filtersSent = $this->FiltersModel->getFilterList('infocenter', 'overview', '%InfoCenterSentApplication%');
if (hasData($filtersSent))
{
for ($filtersCounter = 0; $filtersCounter < count($filtersSent->retval); $filtersCounter++)
@@ -682,7 +682,7 @@ class InfoCenter extends Auth_Controller
}
}
- $filtersNotSent = $this->FiltersModel->getFilterList('infocenter', 'PersonActions', '%InfoCenterNotSentApplication%');
+ $filtersNotSent = $this->FiltersModel->getFilterList('infocenter', 'overview', '%InfoCenterNotSentApplication%');
if (hasData($filtersNotSent))
{
for ($filtersCounter = 0; $filtersCounter < count($filtersNotSent->retval); $filtersCounter++)
@@ -693,7 +693,7 @@ class InfoCenter extends Auth_Controller
}
}
- $customFilters = $this->FiltersModel->getCustomFiltersList('infocenter', 'PersonActions', $this->_uid);
+ $customFilters = $this->FiltersModel->getCustomFiltersList('infocenter', 'overview', $this->_uid);
if (hasData($customFilters))
{
for ($filtersCounter = 0; $filtersCounter < count($customFilters->retval); $filtersCounter++)
@@ -814,7 +814,7 @@ class InfoCenter extends Auth_Controller
$listFilters = array();
$listCustomFilters = array();
- $filters = $this->FiltersModel->getFilterList('infocenter', 'PersonActions', '%InfoCenterFreigegeben%');
+ $filters = $this->FiltersModel->getFilterList('infocenter', 'freigegeben', '%InfoCenterFreigegeben%');
if (hasData($filters))
{
for ($filtersCounter = 0; $filtersCounter < count($filters->retval); $filtersCounter++)
@@ -825,7 +825,7 @@ class InfoCenter extends Auth_Controller
}
}
- $customFilters = $this->FiltersModel->getCustomFiltersList('infocenter', 'PersonActions', $this->_uid);
+ $customFilters = $this->FiltersModel->getCustomFiltersList('infocenter', 'freigegeben', $this->_uid);
if (hasData($customFilters))
{
for ($filtersCounter = 0; $filtersCounter < count($customFilters->retval); $filtersCounter++)
diff --git a/application/core/FHC_Controller.php b/application/core/FHC_Controller.php
index 888c513dc..1f51a72d7 100644
--- a/application/core/FHC_Controller.php
+++ b/application/core/FHC_Controller.php
@@ -58,7 +58,7 @@ class FHC_Controller extends CI_Controller
{
$this->_controllerId = $this->input->get(self::FHC_CONTROLLER_ID);
- if (!isset($this->_controllerId) || isEmptyString($this->_controllerId))
+ if (isEmptyString($this->_controllerId))
{
$this->_controllerId = uniqid(); // generate a unique id
// Redirect to the same URL, but giving FHC_CONTROLLER_ID as HTTP GET parameter
diff --git a/application/libraries/FiltersLib.php b/application/libraries/FiltersLib.php
index 0288e37d5..efb41b449 100644
--- a/application/libraries/FiltersLib.php
+++ b/application/libraries/FiltersLib.php
@@ -326,7 +326,7 @@ class FiltersLib
$this->_ci->load->library('PhrasesLib', array(self::FILTER_PHRASES_CATEGORY));
$tmpFilterNamePhrase = $this->_ci->phraseslib->t(self::FILTER_PHRASES_CATEGORY, $filterJson->namePhrase);
- if (isset($tmpFilterNamePhrase) && !isEmptyString($tmpFilterNamePhrase)) // if is not null or an empty string
+ if (!isEmptyString($tmpFilterNamePhrase)) // if is not null or an empty string
{
$filterName = $tmpFilterNamePhrase;
}
@@ -368,7 +368,7 @@ class FiltersLib
$removeSelectedField = false;
$trimedval = (isset($selectedField)?trim($selectedField):'');
// Checks the parameter selectedField
- if (isset($selectedField) && !isEmptyString($selectedField))
+ if (!isEmptyString($selectedField))
{
// Retrives all the used fields by the current filter
$fields = $this->getElementSession(self::SESSION_FIELDS);
@@ -402,7 +402,7 @@ class FiltersLib
$removeSelectedField = false;
$trimedval = (isset($selectedField)?trim($selectedField):'');
// Checks the parameter selectedField
- if (isset($selectedField) && !isEmptyString($selectedField))
+ if (!isEmptyString($selectedField))
{
// Retrives all the used fields by the current filter
$fields = $this->getElementSession(self::SESSION_FIELDS);
@@ -431,7 +431,7 @@ class FiltersLib
$removeAppliedFilter = false;
$trimedval = (isset($appliedFilter)?trim($appliedFilter):'');
// Checks the parameter appliedFilter
- if (isset($appliedFilter) && !isEmptyString($appliedFilter))
+ if (!isEmptyString($appliedFilter))
{
// Retrives all the used fields by the current filter
$fields = $this->getElementSession(self::SESSION_FIELDS);
@@ -519,7 +519,7 @@ class FiltersLib
$addFilter = false;
$trimedval = (isset($filter)?trim($filter):'');
// Checks the parameter filter
- if (isset($filter) && !isEmptyString($filter))
+ if (!isEmptyString($filter))
{
// Retrives all the used fields by the current filter
$fields = $this->getElementSession(self::SESSION_FIELDS);
@@ -562,7 +562,7 @@ class FiltersLib
$saveCustomFilter = false; // by default returns a failure
$trimedval = (isset($customFilterDescription)?trim($customFilterDescription):'');
// Checks parameter customFilterDescription if not valid stop the execution
- if (!isset($customFilterDescription) || isEmptyString($customFilterDescription))
+ if (isEmptyString($customFilterDescription))
{
return $saveCustomFilter;
}
diff --git a/application/models/content/Ampel_model.php b/application/models/content/Ampel_model.php
index 4b8fab15a..c50025a12 100644
--- a/application/models/content/Ampel_model.php
+++ b/application/models/content/Ampel_model.php
@@ -50,7 +50,7 @@ class Ampel_model extends DB_Model
*/
public function execBenutzerSelect($benutzer_select)
{
- if (isset($benutzer_select) && !isEmptyString($benutzer_select))
+ if (!isEmptyString($benutzer_select))
{
return $this->execQuery($benutzer_select);
}
diff --git a/application/views/system/infocenter/infocenterData.php b/application/views/system/infocenter/infocenterData.php
index 52a56e140..f1276bb36 100755
--- a/application/views/system/infocenter/infocenterData.php
+++ b/application/views/system/infocenter/infocenterData.php
@@ -308,7 +308,7 @@
);
$filterWidgetArray['app'] = $APP;
- $filterWidgetArray['datasetName'] = 'PersonActions';
+ $filterWidgetArray['datasetName'] = 'overview';
$filterWidgetArray['filterKurzbz'] = 'InfoCenterSentApplicationAll';
$filterWidgetArray['filter_id'] = $this->input->get('filter_id');
diff --git a/application/views/system/infocenter/infocenterFreigegebenData.php b/application/views/system/infocenter/infocenterFreigegebenData.php
index 8a282ccda..d96f42c9f 100644
--- a/application/views/system/infocenter/infocenterFreigegebenData.php
+++ b/application/views/system/infocenter/infocenterFreigegebenData.php
@@ -217,7 +217,7 @@
);
$filterWidgetArray['app'] = $APP;
- $filterWidgetArray['datasetName'] = 'PersonActions';
+ $filterWidgetArray['datasetName'] = 'freigegeben';
$filterWidgetArray['filterKurzbz'] = 'InfoCenterFreigegeben5days';
$filterWidgetArray['filter_id'] = $this->input->get('filter_id');
diff --git a/rdf/diplomasupplement.xml.php b/rdf/diplomasupplement.xml.php
index 56f9e3793..4a3609e2b 100644
--- a/rdf/diplomasupplement.xml.php
+++ b/rdf/diplomasupplement.xml.php
@@ -223,7 +223,7 @@ if (isset($_REQUEST["xmlformat"]) && $_REQUEST["xmlformat"] == "xml")
switch($row->orgform_kurzbz)
{
- case 'BB': echo ' Berufbegleitendes Studium / Part-time degree programm';
+ case 'BB': echo ' Berufsbegleitendes Studium / Part-time degree programm';
break;
case 'VZ': echo ' Vollzeitstudium / Full-time degree programm';
break;
diff --git a/system/filtersupdate.php b/system/filtersupdate.php
index 7134b16bf..9166e9154 100644
--- a/system/filtersupdate.php
+++ b/system/filtersupdate.php
@@ -21,7 +21,7 @@
$filters = array(
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterSentApplicationAll',
'description' => '{Alle}',
'sort' => 1,
@@ -52,7 +52,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterSentApplication3days',
'description' => '{"3 Tage keine Aktion"}',
'sort' => 2,
@@ -89,7 +89,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterNotSentApplicationAll',
'description' => '{Alle}',
'sort' => 1,
@@ -124,7 +124,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterNotSentApplication14Days',
'description' => '{"14 Tage keine Aktion"}',
'sort' => 3,
@@ -164,7 +164,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterSentApplicationLt3days',
'description' => '{"< 3 Tage"}',
'sort' => 3,
@@ -201,7 +201,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'overview',
'filter_kurzbz' => 'InfoCenterNotSentApplication5DaysOnline',
'description' => '{"5 Tage keine BewAktion"}',
'sort' => 2,
@@ -247,7 +247,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'freigegeben',
'filter_kurzbz' => 'InfoCenterFreigegeben5days',
'description' => '{"5 Tage Letzte Aktion"}',
'sort' => 1,
@@ -277,7 +277,7 @@ $filters = array(
),
array(
'app' => 'infocenter',
- 'dataset_name' => 'PersonActions',
+ 'dataset_name' => 'freigegeben',
'filter_kurzbz' => 'InfoCenterFreigegebenAlle',
'description' => '{Alle}',
'sort' => 2,
diff --git a/system/xsl/bachelorurkundeEng_0.xsl b/system/xsl/bachelorurkundeEng_0.xsl
index b6ce809d8..eaccc7d4e 100644
--- a/system/xsl/bachelorurkundeEng_0.xsl
+++ b/system/xsl/bachelorurkundeEng_0.xsl
@@ -82,11 +82,14 @@
Sponsionsdatum nicht gesetzt
+
+ Bundesgesetzblattnummer (BGBl) beim Studiengang ist nicht gesetzt
+
Pursuant to section 6 subsection 1 of the Universities of Applied Sciences Studies Act
- (Austrian legal reference: Fachhochschul-Studiengesetz - FHStG, BGBl. Nr. idgF,
+ (Austrian legal reference: Fachhochschul-Studiengesetz - FHStG, BGBl. Nr. idgF),
the University of Applied Sciences Council (Fachhochschulkollegium) awards
@@ -101,7 +104,7 @@
,
, citizen of ,
- student of the university of applied sciences
+ student of the University of Applied Sciences
Bachelor
Master
@@ -119,7 +122,7 @@
after successfully passing the diploma examination on
at the University of Applied Sciences Technikum Wien (Fachhochschule Technikum Wien)
in accordance with the directive of the Agency for Quality Assurance and Accreditation Austria
- dated 9.5.2012 the academic degree
+ dated 09.05.2012 the academic degree
diff --git a/system/xsl/bachelorurkunde_0.xsl b/system/xsl/bachelorurkunde_0.xsl
index 42057612d..917eb7125 100644
--- a/system/xsl/bachelorurkunde_0.xsl
+++ b/system/xsl/bachelorurkunde_0.xsl
@@ -75,6 +75,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
Datum der Abschlussprüfung nicht gesetzt
Kein akademischer Grad ausgewählt
Sponsionsdatum nicht gesetzt
+ Bundesgesetzblattnummer (BGBl) beim Studiengang ist nicht gesetzt
@@ -119,7 +120,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
an der Fachhochschule Technikum Wien
durch Ablegung der Bachelor-Prüfung am ordnungsgemäß abgeschlossen hat,
- den mit Bescheid des Board der Agentur für Qualitätssicherung und Akkreditierung Austria vom 9.5.2012,
+ den mit Bescheid des Board der Agentur für Qualitätssicherung und Akkreditierung Austria vom 09.05.2012,
GZ FH12020016 idgF, gemäß § 6 Abs. 2 FHStG
festgesetzten akademischen Grad
diff --git a/system/xsl/diplomurkundeEng_0.xsl b/system/xsl/diplomurkundeEng_0.xsl
index 8197f4ab3..3dcbeb634 100644
--- a/system/xsl/diplomurkundeEng_0.xsl
+++ b/system/xsl/diplomurkundeEng_0.xsl
@@ -74,11 +74,13 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
Datum der Abschlussprüfung nicht gesetzt
Kein akademischer Grad ausgewählt
Sponsionsdatum nicht gesetzt
+ Bundesgesetzblattnummer (BGBl) beim Studiengang ist nicht gesetzt
+
Pursuant to section 6 subsection 1 of the Universities of Applied Sciences Studies Act
- (Austrian legal reference: Fachhochschul-Studiengesetz - FHStG, BGBl. Nr. idgF,
+ (Austrian legal reference: Fachhochschul-Studiengesetz - FHStG, BGBl. Nr. idgF),
the University of Applied Sciences Council (Fachhochschulkollegium) awards
@@ -89,7 +91,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
,
, citizen of ,
- student of the university of applied sciences
+ student of the University of Applied Sciences
Bachelor
Master
@@ -105,7 +107,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
after successfully passing the diploma examination on
at the University of Applied Sciences Technikum Wien (Fachhochschule Technikum Wien)
in accordance with the directive of the Agency for Quality Assurance and Accreditation Austria
- dated 9.5.2012 the academic degree
+ dated 09.05.2012 the academic degree
abbreviated
diff --git a/system/xsl/diplomurkunde_0.xsl b/system/xsl/diplomurkunde_0.xsl
index 8f58f4287..bb7b076c0 100644
--- a/system/xsl/diplomurkunde_0.xsl
+++ b/system/xsl/diplomurkunde_0.xsl
@@ -75,6 +75,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
Datum der Abschlussprüfung nicht gesetzt
Kein akademischer Grad ausgewählt
Sponsionsdatum nicht gesetzt
+ Bundesgesetzblattnummer (BGBl) beim Studiengang ist nicht gesetzt
@@ -119,7 +120,7 @@ xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
an der Fachhochschule Technikum Wien
durch Ablegung der Master-Prüfung am ordnungsgemäß abgeschlossen hat,
- den mit Bescheid des Board der Agentur für Qualitätssicherung und Akkreditierung Austria vom 9.5.2012,
+ den mit Bescheid des Board der Agentur für Qualitätssicherung und Akkreditierung Austria vom 09.05.2012,
GZ FH12020016 idgF, gemäß § 6 Abs. 2 FHStG
festgesetzten akademischen Grad