Skip to content

Commit

Permalink
rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
CB9TOIIIA committed Aug 28, 2016
1 parent 0a09402 commit 6029876
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 6 deletions.
2 changes: 1 addition & 1 deletion assets/css/auhorsprofile.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ td.tablesorter-pager{background-color:#e6eeee;margin:0}
tr.upper td img{margin-left:1%;opacity:.2}
tr.upper:hover{cursor:pointer}
.mono { font-family: monospace; position: absolute; margin-top: -5px; }
.tagsstat.tags .zebra { height: 700px;}
.tagsstat.tags .zebra { height: 1000px;}
4 changes: 3 additions & 1 deletion views/auhorsprofile/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ function rdate($param, $time=0) {
}

if ($created_bycreated == $authorid) {
$bigname = $user->name;
if ($user->name !== NULL) {
$bigname = $user->name;
}
echo $authcreatedx[] = '<option selected value="'.$created_bycreated.'">'.$bignameIn.'</option>';
}
else {
Expand Down
9 changes: 7 additions & 2 deletions views/autors/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<?php
if (empty($TypeAuthors)):

if ($csshack == 'yes') {
echo "<style>div#system-message-container {display:none;}</style>";
}
Expand Down Expand Up @@ -49,7 +49,12 @@

$user = JFactory::getUser($created_bycreated);
$valueid = $created_bycreated;
$bignamau = $user->name;

if ($user->name !== NULL) {

$bignamau = $user->name;

}

$monthdate = date("Y-m");
echo '<li><form style="display:none" action="/administrator/index.php?option=com_myjbzoostat&view=auhorsprofile" name="a'.$created_bycreated.'" method="post" >';
Expand Down
39 changes: 37 additions & 2 deletions views/index/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan3 span3';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}


echo '<div class="'.$gridmyrow.' bigmonthdata">';

Expand Down Expand Up @@ -1371,6 +1375,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata todaystats" style="'.$cssclasstoblock.'">';

echo ' <img src='.$iconc.' /> ';
Expand Down Expand Up @@ -1540,6 +1548,9 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata todaystats" style="'.$cssclasstoblock.'">';

Expand Down Expand Up @@ -1622,6 +1633,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata">';

echo ' <img src='.$iconc.' /> ';
Expand Down Expand Up @@ -1731,7 +1746,11 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

echo '<div class="'.$gridmyrow.' bigmonthdata " style="'.$cssclasstoblock.'">';
if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata " style="'.$cssclasstoblock.'">';



Expand Down Expand Up @@ -1822,6 +1841,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata">';

echo ' <img src='.$iconc.' /> ';
Expand Down Expand Up @@ -1928,7 +1951,11 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

echo '<div class="'.$gridmyrow.' bigmonthdata " style="'.$cssclasstoblock.'">';
if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata " style="'.$cssclasstoblock.'">';

echo ' <img src='.$iconc.' /> ';

Expand Down Expand Up @@ -2018,6 +2045,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata">';

echo ' <img src='.$iconc.' /> ';
Expand Down Expand Up @@ -2124,6 +2155,10 @@ function bd_nice_number($n) {
$gridmyrow = 'center myspan25 span2';
}

if ($CountYaBlocks == '3') {
$gridmyrow = 'center myspan3 span3';
}

echo '<div class="'.$gridmyrow.' bigmonthdata " style="'.$cssclasstoblock.'">';

echo ' <img src='.$iconc.' /> ';
Expand Down

0 comments on commit 6029876

Please sign in to comment.