[Scummvm-git-logs] scummvm-web master -> c66dc93edef8abe37ef5e00ace6e022fda86f00d

Thunderforge wjherrmann at gmail.com
Sun Oct 4 20:14:34 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-web' repo located at https://github.com/scummvm/scummvm-web .

Summary:
c66dc93ede WEB: Correcting datafiles links (#137)


Commit: c66dc93edef8abe37ef5e00ace6e022fda86f00d
    https://github.com/scummvm/scummvm-web/commit/c66dc93edef8abe37ef5e00ace6e022fda86f00d
Author: Thunderforge (wjherrmann at gmail.com)
Date: 2020-10-04T15:14:32-05:00

Commit Message:
WEB: Correcting datafiles links (#137)

Calling `$game->getDatafiles()` returns the full URL, thus having the prefix URL appended to it is redundant and results in a broken link.

Changed paths:
    templates/pages/compatibility.tpl


diff --git a/templates/pages/compatibility.tpl b/templates/pages/compatibility.tpl
index 1bb96e9a..f2e5ed5d 100644
--- a/templates/pages/compatibility.tpl
+++ b/templates/pages/compatibility.tpl
@@ -75,7 +75,7 @@
             <td class="gameShortName">{$game->getGame()->getId()}</td>
             <td class="gameDatafiles">
                 {if $game->getDatafiles()}
-                <a href="https://wiki.scummvm.org/index.php?title=Datafiles#{$game->getDatafiles()}">{#compatabilityDetailsDetails#}</a></td>
+                <a href="{$game->getDatafiles()}">{#compatabilityDetailsDetails#}</a></td>
             {else}
             ---
             {/if}




More information about the Scummvm-git-logs mailing list