Index: openacs-4/packages/news/tcl/news-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/news/tcl/news-procs.tcl,v diff -u -r1.33 -r1.34 --- openacs-4/packages/news/tcl/news-procs.tcl 2 Feb 2010 18:57:30 -0000 1.33 +++ openacs-4/packages/news/tcl/news-procs.tcl 30 Sep 2013 10:51:35 -0000 1.34 @@ -108,7 +108,7 @@ set url_stub [news_util_get_url $package_id] set url "[ad_url]${url_stub}item/$item_id" - if {[empty_string_p $publish_lead]} { + if {$publish_lead eq ""} { set publish_lead $publish_body } @@ -174,7 +174,7 @@ set now_seconds [clock scan now] set n_days_until_archive {} - if { ![empty_string_p $archive_date] } { + if { $archive_date ne "" } { set archive_date_seconds [clock scan $archive_date] if { $archive_date_seconds > $now_seconds } { @@ -183,7 +183,7 @@ } } - if { ![empty_string_p $publish_date] } { + if { $publish_date ne "" } { # The item has been published or is scheduled to be published set publish_date_seconds [clock scan $publish_date]