tag 621725 +pending tag 621725 +patch thanks
Hi, This is already fixed in the git repository and will be included in rtgui (0.2.81-3) Repo: http://git.debian.org/?p=collab-maint/rtgui.git;a=summary Patch attached. Regards, -- Dario Minnucci <[email protected]> Phone: +34 902884117 | Fax: +34 902024417 | Support: (+34) 807450000 Key fingerprint = BAA1 7AAF B21D 6567 D457 D67D A82F BB83 F3D5 7033
# # Description: Fix for outpu notice: Undefined variable: diff (Closes:#621725) # Author: Dario Minnucci <[email protected]> # Bug-Debian: http://bugs.debian.org/621725 # Forwarded: http://code.google.com/p/rtgui/issues/detail?id=113 # Index: rtgui/functions.php =================================================================== --- rtgui.orig/functions.php 2011-04-08 10:58:13.889279350 +0200 +++ rtgui/functions.php 2011-04-08 10:58:31.369020786 +0200 @@ -310,6 +310,7 @@ $lengths=array("60","60","24","7","4.35","12"); $now=time(); // is it future date or past date + $diff=0; if($now > $date) { $diff=$now-$date; }

