[첫화면으로]UseModWiki소스수정/페이지정보출력

마지막으로 [b]

페이지 정보 출력 양식 변경

sub GetEditGuide {
    ...
#   if (&UserCanEdit($id, 0)) {    여기서부터
#       if ($rev ne '') {
#   ...
#
#   $result .= "</div>";           여기까지를 다음과 같이 변경

    if ($Section{'revision'} > 0) {
        $result .= '<br>';
        if ($rev eq '') {  # Only for most current rev
            $result .= T('Last edited');
        } else {
            $result .= T('Edited');
        }
        $result .= ' ' . &TimeToText($Section{ts});
    }
    if ($UseDiff) {
        $result .= ' ' . &ScriptLinkDiff(4, $id, T('(diff)'), $rev);
    }

    $result .= '<br>';

    $result .= &GetHistoryLink($id, T('History'));
    if ($rev ne '') {
        $result .= ' | ';
        $result .= &GetPageLinkText($id, T('View current revision'));
    }

    $result .= ' | ';

    if (&UserCanEdit($id, 0)) {
        if ($rev ne '') {
            $result .= &GetOldPageLink('edit',   $id, $rev,
                           Ts('Edit revision %s of this page', $rev));
        } else {
            $result .= &GetEditLink($id, T('Edit text of this page'));
        }
    } else {
        $result .= T('This page is read-only');
    }
    $result .= "</div>";
### 여기까지
    return $result;
}


위키위키분류

마지막 편집일: 2007-1-8 12:19 pm (변경사항 [d])
715 hits | Permalink | 변경내역 보기 [h] | 페이지 소스 보기