improved message texts

This commit is contained in:
Steffen Schröder
2014-05-09 13:00:04 +02:00
parent 350e82d32b
commit 1e93aafd63
3 changed files with 6 additions and 8 deletions

View File

@@ -207,7 +207,7 @@ class PlayerDataManager {
if (is_array($param)) {
return self::TYPE_ARRAY;
}
trigger_error('Unsupported setting type. ' . print_r($param, true));
trigger_error('Unsupported data type. ' . print_r($param, true));
return null;
}
@@ -358,7 +358,7 @@ class PlayerDataManager {
if ($type === self::TYPE_ARRAY) {
return explode($this->arrayDelimiter, $value);
}
trigger_error('Unsupported setting type. ' . print_r($type, true));
trigger_error('Unsupported data type. ' . print_r($type, true));
return $value;
}
}