mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-30 15:20:36 +00:00
9 lines
274 B
PHP
9 lines
274 B
PHP
<?php if($diff===false): ?>
|
|
<div class="error">Diff is not supported for this file type.</div>
|
|
<?php elseif(empty($diff)): ?>
|
|
<div class="error">No changes.</div>
|
|
<?php else: ?>
|
|
<div class="content">
|
|
<pre class="diff"><?php echo $diff; ?></pre>
|
|
</div>
|
|
<?php endif; ?>
|