Corrected link in README.md

This commit is contained in:
objecttothis
2022-11-28 12:45:52 +04:00
committed by jekkos
parent 4123d9d8f7
commit 1dd58e922f
288 changed files with 9131 additions and 15582 deletions

View File

@@ -22,7 +22,7 @@ class Module extends Model
return lang($row->name_lang_key);
}
return lang('Error.unknown');
return lang('Errors.unknown');
}
public function get_module_desc(string $module_id): string //TODO: This method doesn't seem to be called in the code. Is it needed? Also, probably should change the name to get_module_description()
@@ -37,7 +37,7 @@ class Module extends Model
return lang($row->desc_lang_key);
}
return lang('Error.unknown');
return lang('Errors.unknown');
}
public function get_all_permissions(): ResultInterface