php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #27622 News interface broken
Submitted: 2004-03-17 04:45 UTC Modified: 2004-08-04 18:49 UTC
Votes:2
Avg. Score:3.0 ± 0.0
Reproduced:2 of 2 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: didou at nexen dot net Assigned:
Status: Closed Package: Website problem
PHP Version: Irrelevant OS: None
Private report: No CVE-ID: None
View Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
If you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: didou at nexen dot net
New email:
PHP Version: OS:

 

 [2004-03-17 04:45 UTC] didou at nexen dot net
Description:
------------
Have a look at http://news.php.net/group.php?group=php.pear.doc&i=3010


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-07-20 08:02 UTC] dave@php.net
The solution here is quite simple. The subject of that particular message exceeds the length given to fgets() in php-news-web/group.php. The solution is:

-while ($line = fgets($s, 4096)) {
+while ($line = fgets($s, 16384)) {

(could make it larger than 16384 if necessary). Could someone with php-news-web karma please fix this?
 [2004-08-04 18:49 UTC] goba@php.net
Patch committed.
 
PHP Copyright © 2001-2026 The PHP Group
All rights reserved.
Last updated: Thu Jun 25 14:00:01 2026 UTC