Skip to content

Commit

Permalink
Fix variable name to allow text retrieval
Browse files Browse the repository at this point in the history
From the "I don't understand how this ever worked" files.
  • Loading branch information
waldoj committed Jan 1, 2024
1 parent a914de5 commit 57b2166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/full_text.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$full_text = curl_exec($ch);
$response = curl_exec($ch);

/*
* Check that the cURL request was successful (HTTP status code 2XX).
Expand Down

0 comments on commit 57b2166

Please sign in to comment.