Skip to content

Commit

Permalink
Changed Quota-Text to prevent boundarybreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton committed Jul 6, 2018
1 parent abec4ea commit 6b4960b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files/templates/appnavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class="pinned <?php p($pinned === 0 ? 'first-pinned ' : '') ?><?php
<a href="#" class="icon-quota svg">
<p id="quotatext"><?php
if ($_['quota'] !== \OCP\Files\FileInfo::SPACE_UNLIMITED) {
p($l->t('%s of %s used', [$_['usage'], $_['total_space']]));
p($l->t('%s of %s', [$_['usage'], $_['total_space']]));
} else {
p($l->t('%s used', [$_['usage']]));
} ?></p>
Expand Down Expand Up @@ -121,4 +121,4 @@ class="app-navigation-entry-menu">
</ul>
</div>
<?php }
}
}

0 comments on commit 6b4960b

Please sign in to comment.