Skip to content

Commit

Permalink
複合演算子に置き換え
Browse files Browse the repository at this point in the history
取りこぼし分を全て修正
  • Loading branch information
mikoim committed Apr 29, 2016
1 parent 780b7f0 commit 9e1b217
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wiki-common/lib/PukiWiki/Lang/Holiday/PublicHoliday.php
Expand Up @@ -260,7 +260,7 @@ private function zeller($y,$m,$d)
$y--;
$m += 12;
}
$d = $y + floor($y/4) - floor($y/100) + floor($y/400) + floor(2.6*$m+1.6) + $d;
$d += $y + floor($y/4) - floor($y/100) + floor($y/400) + floor(2.6*$m+1.6);
return ($d%7);
}

Expand Down
2 changes: 1 addition & 1 deletion wiki-common/plugin/tracker.inc.php
Expand Up @@ -1385,7 +1385,7 @@ function _replace_title($matches = array())
}

// This column will be the first position , if you click
$orders = array($fieldname => $order) + $orders;
$orders += array($fieldname => $order);

$_orders = array();
foreach ($orders as $_fieldname => $_order) {
Expand Down

0 comments on commit 9e1b217

Please sign in to comment.