1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-22 05:23:41 +01:00

Fix per l'hash del commit

Rimozione del prefisso "R" dall'hash del commit inserito all'interno del file REVISION (per la release).
This commit is contained in:
Thomas Zilio 2017-09-11 18:50:56 +02:00
parent a0fed34a33
commit 728f0f0968
2 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ echo '
<th class="text-right">'.tr('Versione OSM').':</th>
<td>
{[ "type": "span", "placeholder": "'.tr('Versione OSM').'", "value": "'.$version.' ('.(!empty($revision) ? 'R'.$revision : tr('In sviluppo')).')" ]}
{[ "type": "span", "placeholder": "'.tr('Versione OSM').'", "value": "'.$version.' ('.(!empty($revision) ? $revision : tr('In sviluppo')).')" ]}
</td>
</tr>
</table>

View File

@ -11,7 +11,7 @@ if (Auth::check()) {
<footer class="main-footer">
<span class="pull-right hidden-xs">
<strong>'.tr('Versione').' '.$version.'</strong>
<small class="text-muted">('.(!empty($revision) ? 'R'.$revision : tr('In sviluppo')).')</small>
<small class="text-muted">('.(!empty($revision) ? $revision : tr('In sviluppo')).')</small>
</span>
'.tr('OpenSTAManager').'
</footer>