documentation

This commit is contained in:
Dany De Bontridder 2015-05-24 19:58:42 +02:00
parent ea1ce3bf0b
commit 50fe3e3e21

View file

@ -88,8 +88,9 @@ function tr($p_string, $p_extra='')
return '<tr ' . $p_extra . '>' . $p_string . '</tr>';
}
/**\brief escape correctly php string to javascript */
/**
* @brief escape correctly php string to javascript
*/
function j($p_string)
{
$a = preg_replace("/\r?\n/", "\\n", addslashes($p_string));
@ -1176,4 +1177,4 @@ function is_msie()
$is_msie=0;
return $is_msie;
}
?>
?>