@@ -2,6 +2,10 @@
class git
{
+ public static function fetch(){
+ exec('git fetch --all');
+ }
+
public static function checkError(string $_string = NULL){
$return = NULL;
if($_string != NULL){
@@ -1,4 +1,5 @@
<?php
+git::fetch();
$checkMaintenance = core::isMaintenance();
$checkDebug = core::isDebug();
?>