Skip to content

Commit

Permalink
Fix unmatched variables
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/htdocs/branches/beta@22497 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
gjanssens committed Nov 1, 2012
1 parent 0d4bfa2 commit c2dfd10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viewdoc.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ if ($showrev == "trunk") {
} else {
# For the stable versions, we can simply check file availability because we're
# on the same server
$checkpath="docs/v".$showversion."/".$showlang."/".$showdoc;
$checkpath="docs/v".$showrev."/".$showlang."/".$showdoc;
if (!file_exists ($checkpath)) {
$showlang = "C";
$req_lang_ok = false;
}

$showurl=$basepath."/v".$showversion."/".$showlang."/".$showdoc;
$showurl=$basepath."/v".$showrev."/".$showlang."/".$showdoc;
}

?>
Expand Down

0 comments on commit c2dfd10

Please sign in to comment.