소스 검색

Fix the remaining number of elements. re #79

master
Sébastien Lucas 10 년 전
부모
커밋
e6e0a8ee5b
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      book.php
  2. +1
    -1
      language.php
  3. +1
    -1
      rating.php

+ 1
- 1
book.php 파일 보기

@@ -547,7 +547,7 @@ order by substr (upper (sort), 1, 1)", "substr (upper (sort), 1, 1) as title, co
{
array_push ($entryArray, new Entry ($post->title, Book::getEntryIdByLetter ($post->title),
str_format (localize("bookword", $post->count), $post->count), "text",
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_BOOKS_LETTER."&id=". rawurlencode ($post->title)))));
array ( new LinkNavigation ("?page=".parent::PAGE_ALL_BOOKS_LETTER."&id=". rawurlencode ($post->title))), "", $post->count));
}
return $entryArray;
}


+ 1
- 1
language.php 파일 보기

@@ -63,7 +63,7 @@ order by languages.lang_code');
$language = new Language ($post->id, $post->lang_code);
array_push ($entryArray, new Entry (Language::getLanguageString ($language->lang_code), $language->getEntryId (),
str_format (localize("bookword", $post->count), $post->count), "text",
array ( new LinkNavigation ($language->getUri ()))));
array ( new LinkNavigation ($language->getUri ())), "", $post->count));
}
return $entryArray;
}


+ 1
- 1
rating.php 파일 보기

@@ -48,7 +48,7 @@ class Rating extends Base {
$rating = str_format (localize("ratingword", $rating), $rating);
array_push ($entryArray, new Entry ($rating, $ratingObj->getEntryId (),
str_format (localize("bookword", $post->count), $post->count), "text",
array ( new LinkNavigation ($ratingObj->getUri ()))));
array ( new LinkNavigation ($ratingObj->getUri ())), "", $post->count));
}
return $entryArray;
}


불러오는 중...
취소
저장