Skip to content

Commit

Permalink
refs #1337
Browse files Browse the repository at this point in the history
 * 오류 수정
  • Loading branch information
yupmin committed Oct 7, 2009
1 parent b081cc9 commit 16f4e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rewrite.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
$interfacePath = 'interface/blog/'.$pathPart.'.php';
break;
case 'rss': case 'atom':
if($accessInfo['URLfragment'][1] == 'category') {
if(isset($accessInfo['URLfragment'][1]) && $accessInfo['URLfragment'][1] == 'category') {
$pathPart = $accessInfo['URLfragment'][0].'/category';
$interfacePath = 'interface/'.$pathPart.'/index.php';
} else if (is_numeric(strtok(end($accessInfo['URLfragment']), '&'))) {
Expand Down

0 comments on commit 16f4e39

Please # to comment.