다운로드
소프트웨어 개발
계정
다운로드
소프트웨어 개발
Login
Forgot Account/Password
계정 만들기
언어
도움
언어
도움
×
Login
Login Name
Password
×
Forgot Account/Password
Translation Status of 한국말
Category:
Software
People
PersonalForge
Magazine
Wiki
검색
OSDN
>
브라 우즈 소프트웨어
>
Internet
>
WWW/HTTP
>
Dynamic Content
>
XOOPS
>
Ticket List/Search
>
Ticket #6462
XOOPS
Description
Project Summary
Developer Dashboard
웹 페이지
Developers
Image Gallery
List of RSS Feeds
Activity
Statistics
History
다운로드
List of Releases
Stats
소스 코드
Code Repository list
CVS
View Repository
티켓
Ticket List
Milestone List
Type List
Component List
List of frequently used tickets/RSS
Submit New Ticket
Documents
Communication
포럼
List of Forums
도움 (1)
Open Discussion (1)
Mailing Lists
list of ML
xoops-cvslog
News
Ticket #6462
Ticket List
Submit New Ticket
RSS
管理者が登録ユーザ情報のホームページアドレスを削除出来ない。
오픈 날짜:
2005-08-05 07:23
마지막 업데이트:
2005-08-05 07:23
monitor
ON
OFF
Reporter:
okuhiki
소유자:
(None)
Type:
Feature Requests
Status:
Open
Component:
(None)
MileStone:
(None)
Priority:
5 - Medium
Severity:
5 - Medium
Resolution:
None
File:
None
Details
Reply
http://jp.xoops.org/modules/newbb/viewtopic.php?
viewmode=flat&topic_id=10176&forum=12
の転載です。
管理画面からのユーザ編集において、ホームページ欄を空白
(削除の意図で)として送信を行なっても、設定が反映されま
せん。
\html\modules\system\admin\users\main.php Line 71
において、
if (!empty($_POST['url'])) {
$edituser->setVar("url", formatURL($_POST['url']));
}
と、version 1.2.6.1以降では、空白を無視しています。
if (!empty($_POST['url'])) {
$edituser->setVar("url", formatURL($_POST['url']));
} else {
$edituser->setVar("url", "");
}
と、変更する事で削除出来るようです。
Ticket History (0/0 Histories)
Attachment File List (
0
)
Attachment File List
No attachments
Edit
Add Comment
You are not logged in.
I you are not logged in, your comment will be treated as an anonymous post. »
Login
Add Comment
Preview
Submit
viewmode=flat&topic_id=10176&forum=12
の転載です。
管理画面からのユーザ編集において、ホームページ欄を空白
(削除の意図で)として送信を行なっても、設定が反映されま
せん。
\html\modules\system\admin\users\main.php Line 71
において、
if (!empty($_POST['url'])) {
$edituser->setVar("url", formatURL($_POST['url']));
}
と、version 1.2.6.1以降では、空白を無視しています。
if (!empty($_POST['url'])) {
$edituser->setVar("url", formatURL($_POST['url']));
} else {
$edituser->setVar("url", "");
}
と、変更する事で削除出来るようです。