mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 08:23:12 +01:00
Allows the developer to define the text when printing out a list of errors/results/warnings.
This commit is contained in:
parent
3bd53a72c2
commit
5e7170193e
@ -319,14 +319,14 @@
|
||||
@abstract This is used for reporting errors in a nice format.
|
||||
@param $error - array of errors
|
||||
*/
|
||||
function error_list($errors)
|
||||
function error_list($errors,$text='Error')
|
||||
{
|
||||
if (! is_array($errors))
|
||||
{
|
||||
return False;
|
||||
}
|
||||
|
||||
$html_error = '<table border="0" width="50%"><tr><td align="right"><b>' . lang('error')
|
||||
$html_error = '<table border="0" width="100%"><tr><td align="right"><b>' . lang($text)
|
||||
. '</b>: </td><td align="left">' . $errors[0] . '</td></tr>';
|
||||
for ($i=1; $i<count($errors); $i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user