Skip to content
Snippets Groups Projects
Commit b37ed6a0 authored by Dorian Merz's avatar Dorian Merz Committed by Robert Lange
Browse files

refs #17834 [VuFind-Core] fixes casting error in uptime display

* this is fixed in VF6
parent 66fe832f
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<tr> <tr>
<th><?=$this->transEsc('Uptime')?>: </th> <th><?=$this->transEsc('Uptime')?>: </th>
<?php $uptime = $core->xpath('//lst[@name="' . $coreName . '"]/long[@name="uptime"]') ?> <?php $uptime = $core->xpath('//lst[@name="' . $coreName . '"]/long[@name="uptime"]') ?>
<td><?=$this->printms((string)array_pop($uptime))?></td> <td><?=$this->printms((int)array_pop($uptime))?></td>
</tr> </tr>
</table> </table>
<?php endforeach; ?> <?php endforeach; ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment