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
>
Software Development
>
Frameworks
>
Ethna
>
Ticket List/Search
>
Tíquete #8462
Ethna
Fork
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
Git
ethna
Subversion
Visualizar Repositório
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
list of ML
News
Tíquete #8462
Ticket List
Submit New Ticket
RSS
Ethna_ActionForm::setFormVars()
:
2006-05-26 17:57
Última Atualização:
2006-06-06 13:35
monitor
ON
OFF
Relator:
tohokuaiki
Dono:
(Nenhum)
Tipo:
Bugs
Estado:
Fechado
Componente:
(Nenhum)
Marcos:
(Nenhum)
Prioridade:
2
Gravidade:
5 - Medium
Resolução:
Rejected
Arquivo:
Nenhum
Details
ここで、「// 配列構造の検査」がありますが、
if (is_array($def['type'])) {
if (is_array($http_vars[$name]) == false) {
は、requiredでは無い場合、必ずしもis_arrayがtrueを返さ
なくても良いので、
if (is_array($def['type'])) {
if (is_array($http_vars[$name]) == false&&
isset($def['required']) && $def['required']==true) {
にする方が適切かと思います。
Ticket History (2/2 Histories)
2006-05-26 18:24
Updated by:
tohokuaiki
Prioridade
Update from
5 - Medium
to
2
2006-06-06 13:35
Updated by:
fujimoto
Ticket Close date
is changed to
2006-06-06 13:35
Resolução
Update from
Nenhum
to
Rejected
Estado
Update from
Aberto
to
Fechado
Comentário
Logged In: YES
user_id=1134
うーん、微妙なところですが、ちょっとここで$def['required']
はみたくないなー、とかもありまして、一旦ここは仕様とさせt
げくださいm(_ _)m
Attachment File List (
0
)
Attachment File List
No attachments
Editar
Please login to add comment to this ticket »
Login
if (is_array($def['type'])) {
if (is_array($http_vars[$name]) == false) {
は、requiredでは無い場合、必ずしもis_arrayがtrueを返さ
なくても良いので、
if (is_array($def['type'])) {
if (is_array($http_vars[$name]) == false&&
isset($def['required']) && $def['required']==true) {
にする方が適切かと思います。