Skip to content

Commit

Permalink
Updated for new DIGEST syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 18, 2002
1 parent 3ea0cbd commit c7cc3d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion php_interface/example_digest.php
Expand Up @@ -34,7 +34,7 @@
else
{
// get the five newest news items...
if ($err = news_digest($sock, $digestarray, 5))
if ($err = news_digest($sock, $digestarray, false, 5))
$err = "Failed to get digest: $err.";
} // else
} // else
Expand Down
2 changes: 1 addition & 1 deletion php_interface/news.php
Expand Up @@ -85,7 +85,7 @@ function output_archive($news_queue, $host = 'localhost', $profile = false)
$err = "Failed to get queue info: $err.";
else
{
if ($err = news_digest($sock, $digestarray, 9999999))
if ($err = news_digest($sock, $digestarray, false, 9999999))
$err = "Failed to get digest: $err.";
} // else
} // else
Expand Down
2 changes: 1 addition & 1 deletion php_interface/queue.php
Expand Up @@ -160,7 +160,7 @@ function output_queue_rows($sock, $showall = 0)
else
{
// !!! FIXME: Grab these in chunks?
if ($err = news_digest($sock, $query, 9999999))
if ($err = news_digest($sock, $query, false, 9999999))
$err = "Failed to get digest: $err.";
} // else

Expand Down

0 comments on commit c7cc3d7

Please sign in to comment.