Skip to content

Commit

Permalink
fixed javascript bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsetsystems committed Oct 4, 2006
1 parent 1a7c749 commit b4ec700
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
$in_cat_id = 0;
if ($provstat[$providerid]['in_cat'] >= 0) {
$category =& $A_CATEGORY[$provstat[$providerid]['in_cat']];
$in_cat_id = $category['id'];
if ($category['id']) $in_cat_id = $category['id'];
}

// If a slot omits the top border, then we omit the TOD cell's top border
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
$in_cat_id = 0;
if ($provstat[$providerid]['in_cat'] >= 0) {
$category =& $A_CATEGORY[$provstat[$providerid]['in_cat']];
$in_cat_id = $category['id'];
if ($category['id']) $in_cat_id = $category['id'];
}

// If a slot omits the top border, then we omit the TOD cell's top border
Expand Down Expand Up @@ -462,3 +462,4 @@
[-/php-]

</body>
</html>

0 comments on commit b4ec700

Please sign in to comment.