Skip to content
Snippets Groups Projects
Commit 677c0288 authored by Joas Schilling's avatar Joas Schilling
Browse files

Merge pull request #9757 from owncloud/issue/9756

Add language parameter to public API for getL10N()
parents 764e695c 01878153
No related branches found
No related tags found
No related merge requests found
......@@ -128,10 +128,11 @@ class Util {
/**
* get l10n object
* @param string $application
* @param string|null $language
* @return \OC_L10N
*/
public static function getL10N( $application ) {
return \OC_L10N::get( $application );
public static function getL10N($application, $language = null) {
return \OC_L10N::get($application, $language);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment