// We get here when processing <client> tags for the current group.
// Prepare a list of project ids.
- $projects = explode(',', $attrs['PROJECTS']);
- foreach ($projects as $id)
- $mapped_projects[] = $this->currentGroupProjectMap[$id];
+ if ($attrs['PROJECTS']) {
+ $projects = explode(',', $attrs['PROJECTS']);
+ foreach ($projects as $id)
+ $mapped_projects[] = $this->currentGroupProjectMap[$id];
+ }
$client_id = ttClientHelper::insert(array(
'group_id' => $this->current_group_id,
// Read and parse the content of the file. During parsing, startElement is called back for each tag.
$file = fopen($filename, 'r');
- while ($data = fread($file, 4096)) {
+ while (($data = fread($file, 4096)) && $this->errors->no()) {
if (!xml_parse($parser, $data, feof($file))) {
$this->errors->add(sprintf($i18n->get('error.xml'),
xml_get_current_line_number($parser),
// Read and parse the content of the file. During parsing, startElement is called back for each tag.
$file = fopen($filename, 'r');
- while ($data = fread($file, 4096)) {
+ while (($data = fread($file, 4096)) && $this->errors->no()) {
if (!xml_parse($parser, $data, feof($file))) {
$this->errors->add(sprintf($i18n->get('error.xml'),
xml_get_current_line_number($parser),