diff --git a/build/debian/README.howto b/build/debian/README.howto index 5c0f9d7d0a4..f9bb31c6fcf 100644 --- a/build/debian/README.howto +++ b/build/debian/README.howto @@ -252,7 +252,7 @@ Note: If there was errors solved manually after get-orig-sources.sh, you may nee * Add an entry into debian/changelog > dch -v x.y.z+dfsg-w "My comment" will add entry. -For example: dch -v x.y.z+dfsg-w "New upstream release." for a new version (x.y.z = version, w start from 1 and increaed for each new import) +For example: dch -v x.y.z+dfsgw-1 "New upstream release." for a new version (x.y.z = version, w start from 1 and increaed for each new import) Then modify changelog to replace "version" or "unstable" with "UNRELEASED". Then check/modify also the user/date signature: - Date must have format reported by "date -R" diff --git a/htdocs/comm/action/peruser.php b/htdocs/comm/action/peruser.php index a1fde80a842..939d345e2db 100644 --- a/htdocs/comm/action/peruser.php +++ b/htdocs/comm/action/peruser.php @@ -685,21 +685,22 @@ $db->close(); - /** * Show event of a particular day * - * @param int $day Day - * @param int $month Month - * @param int $year Year - * @param int $monthshown Current month shown in calendar view - * @param string $style Style to use for this day - * @param array &$eventarray Array of events - * @param int $maxprint Nb of actions to show each day on month view (0 means no limit) - * @param int $maxnbofchar Nb of characters to show for event line - * @param string $newparam Parameters on current URL - * @param int $showinfo Add extended information (used by day view) - * @param int $minheight Minimum height for each event. 60px by default. + * @param string $username Login + * @param int $day Day + * @param int $month Month + * @param int $year Year + * @param int $monthshown Current month shown in calendar view + * @param string $style Style to use for this day + * @param array &$eventarray Array of events + * @param int $maxprint Nb of actions to show each day on month view (0 means no limit) + * @param int $maxnbofchar Nb of characters to show for event line + * @param string $newparam Parameters on current URL + * @param int $showinfo Add extended information (used by day view) + * @param int $minheight Minimum height for each event. 60px by default. + * @param boolean $showheader Show header * @return void */ function show_day_events2($username, $day, $month, $year, $monthshown, $style, &$eventarray, $maxprint=0, $maxnbofchar=16, $newparam='', $showinfo=0, $minheight=60, $showheader=false)