Skip to content

Commit

Permalink
fix for missing items in left nav frame
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsystems committed May 7, 2007
1 parent 3a01ee2 commit 0a1220b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions interface/main/left_nav.php
Original file line number Diff line number Diff line change
Expand Up @@ -450,9 +450,8 @@ function selpopup(selobj) {
// are comprised of the 3-character document id and the 1-digit usage type,
// so that JavaScript can easily access this information.
$default_top_rbid = $GLOBALS['athletic_team'] ? 'ros' : 'cal';

foreach ($primary_docs as $key => $varr) {
if (isset ($disallowed[$key])) continue;
foreach ($primary_docs as $key => $varr) {
if (!empty($disallowed[$key])) continue;
$label = $varr[0];
$usage = $varr[1];
$url = $varr[2];
Expand Down

0 comments on commit 0a1220b

Please sign in to comment.