mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
PHP5.3 Anpassung - Split durch Explode ersetzt
This commit is contained in:
+2
-2
@@ -99,7 +99,7 @@ function checkfilter($row, $filter2)
|
||||
{
|
||||
// Alle Personen die keine Belastung auf den uebergebenen Buchungstyp haben
|
||||
// Incoming werden nicht beruecksichtigt
|
||||
list($filter, $buchungstyp) = split(';',$filter2);
|
||||
list($filter, $buchungstyp) = explode(';',$filter2);
|
||||
$prestudent = new prestudent();
|
||||
$prestudent->getLastStatus($row->prestudent_id);
|
||||
|
||||
@@ -585,7 +585,7 @@ if($xmlformat=='rdf')
|
||||
else
|
||||
{
|
||||
//XML
|
||||
$uids = split(';',$uid);
|
||||
$uids = explode(';',$uid);
|
||||
echo '<studenten>';
|
||||
foreach ($uids as $uid)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user