Download
Desenvolver
Conta
Download
Desenvolver
Login
Forgot Account/Password
Criar Conta
Linguagem
Ajuda
Linguagem
Ajuda
×
Login
Nome de acesso
Senha
×
Forgot Account/Password
Estado tradução de Português
Category:
Software
People
PersonalForge
Magazine
Wiki
Pesquisa
OSDN
>
Pesquisar Software
>
Internet
>
WWW/HTTP
>
Dynamic Content
>
XOOPS
>
Ticket List/Search
>
Tíquete #6092
XOOPS
Descrição
Project Summary
Developer Dashboard
Página da Web
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
Histórico
Downloads
List of Releases
Stats
Código Fonte
Code Repository list
CVS
Visualizar Repositório
Tíquete
Ticket List
Milestone List
Type List
Lista de componentes
List of frequently used tickets/RSS
Submit New Ticket
Documents
Communication
Fóruns
List of Forums
Ajuda (1)
Open Discussion (1)
Mailing Lists
list of ML
xoops-cvslog
News
Tíquete #6092
Ticket List
Submit New Ticket
RSS
モジュールバージョンの丸めが甘い
:
2005-06-01 13:25
Última Atualização:
2005-06-02 14:01
monitor
ON
OFF
Relator:
gij
Dono:
(Nenhum)
Tipo:
Bugs
Estado:
Fechado
Componente:
(Nenhum)
Marcos:
(Nenhum)
Prioridade:
5 - Medium
Gravidade:
5 - Medium
Resolução:
Fixed
Arquivo:
Nenhum
Details
Responder
モジュール番号が特定の数字(例えば0.29)だと、下2桁目
が、一つ少ない数字になってしまう。
修正案:
kernel/module.php 89行目
旧)
$this->setVar('version', 100 *
$this->modinfo['version']);
新)
$this->setVar('version', round(100 *
$this->modinfo['version']));
本当は ceil() にすべきポイントの気はしますが、無難に
round()で。
Ticket History (1/1 Histories)
2005-06-02 14:01
Updated by:
onokazu
Ticket Close date
is changed to
2005-06-02 14:01
Resolução
Update from
Nenhum
to
Fixed
Estado
Update from
Aberto
to
Fechado
Comentário
Responder
Logged In: YES
user_id=754
有難うございます。CVSの方へと反映いたしました。
Attachment File List (
0
)
Attachment File List
No attachments
Editar
Adicionar Comentário
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Login
Adicionar Comentário
Pré-visualizar
Submit
が、一つ少ない数字になってしまう。
修正案:
kernel/module.php 89行目
旧)
$this->setVar('version', 100 *
$this->modinfo['version']);
新)
$this->setVar('version', round(100 *
$this->modinfo['version']));
本当は ceil() にすべきポイントの気はしますが、無難に
round()で。