diff --git a/web/yaamp/modules/explorer/ExplorerController.php b/web/yaamp/modules/explorer/ExplorerController.php index b224ad4..b876738 100644 --- a/web/yaamp/modules/explorer/ExplorerController.php +++ b/web/yaamp/modules/explorer/ExplorerController.php @@ -90,7 +90,7 @@ class ExplorerController extends CommonController } if($coin && !empty($hash) && ctype_xdigit($hash)) - $this->render('block', array('coin'=>$coin, 'hash'=>substr($hash, 0, 64))); + $this->render('block', array('coin'=>$coin, 'hash'=>$hash)); else if($coin) $this->render('coin', array('coin'=>$coin)); diff --git a/web/yaamp/modules/explorer/coin.php b/web/yaamp/modules/explorer/coin.php index 3dfcd89..4b1f519 100644 --- a/web/yaamp/modules/explorer/coin.php +++ b/web/yaamp/modules/explorer/coin.php @@ -82,7 +82,9 @@ for($i = $start; $i > max(1, $start-21); $i--) echo ''.$tx.''; echo ''.$confirms.''; - echo ''.$coin->createExplorerLink($hash, array('hash'=>$hash)).''; + echo ''; + echo $coin->createExplorerLink($hash, array('hash'=>$hash)); + echo ''; echo ""; }