Bladeren bron

Fix warnings an code enhancement.

master
Sébastien Lucas 10 jaren geleden
bovenliggende
commit
133b6dc9d6
5 gewijzigde bestanden met toevoegingen van 5 en 6 verwijderingen
  1. +1
    -2
      author.php
  2. +1
    -2
      book.php
  3. +0
    -1
      feed.php
  4. +1
    -1
      rating.php
  5. +2
    -0
      sendtomail.php

+ 1
- 2
author.php Bestand weergeven

@@ -68,8 +68,7 @@ order by substr (upper (sort), 1, 1)');
}

public static function getEntryArray ($query, $params) {
$result = parent::executeQuery ($query, self::AUTHOR_COLUMNS, "", $params, -1);
$result = $result [1];
list (, $result) = parent::executeQuery ($query, self::AUTHOR_COLUMNS, "", $params, -1);
$entryArray = array();
while ($post = $result->fetchObject ())
{


+ 1
- 2
book.php Bestand weergeven

@@ -567,8 +567,7 @@ order by substr (upper (sort), 1, 1)");

public static function getAllRecentBooks() {
global $config;
$entryArray = self::getEntryArray (self::SQL_BOOKS_RECENT . $config['cops_recentbooks_limit'], array (), -1);
$entryArray = $entryArray [0];
list ($entryArray, ) = self::getEntryArray (self::SQL_BOOKS_RECENT . $config['cops_recentbooks_limit'], array (), -1);
return $entryArray;
}



+ 0
- 1
feed.php Bestand weergeven

@@ -41,5 +41,4 @@
$currentPage->InitializeContent ();
echo $OPDSRender->render ($currentPage);
return;
break;
}

+ 1
- 1
rating.php Bestand weergeven

@@ -43,7 +43,7 @@ class Rating extends Base {
}

public static function getEntryArray ($query, $params) {
list ($totalNumber, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1);
list (, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1);
$entryArray = array();
while ($post = $result->fetchObject ())
{


+ 2
- 0
sendtomail.php Bestand weergeven

@@ -28,6 +28,8 @@ function checkRequest ($idData, $emailDest) {

if (php_sapi_name() === 'cli') { return; }

global $config;

if ($error = checkConfiguration ()) {
echo $error;
exit;


Laden…
Annuleren
Opslaan