| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-01-14 21:53:45 GMT-0800 |
| Commit | 624d975c5e6c949112710a8ceea772589bca37fb |
| Parent | ededbcd |
| -<?php | ||
| -if (empty($repo)) { | ||
| - echo "<div class='card'><p>Error: No repository specified</p></div>"; | ||
| - return; | ||
| -} | ||
| - | ||
| -$commits = getCommits($repo, $ref); | ||
| - | ||
| -if ($commits === false || empty($commits)) { | ||
| - echo "<div class='card'><p>Error: Could not load commits for repository: " . htmlspecialchars($repo) . "</p></div>"; | ||
| - echo "<div class='card'><pre>Debug - Repo path: " . REPOS_PATH . '/' . basename($repo) . "</pre></div>"; | ||
| -} | ||
| -?> | ||
| <?php $commits = getCommits($repo, $ref); ?> | ||
| <div class="card"> |
| Delta | 0 lines added, 13 lines removed, 13-line decrease |
|---|