| class LanguageRules { | ||
| public static function get( string $lang ): array { | ||
| - $file = __DIR__ . \strtolower( $lang ) . '.php'; | ||
| + $file = __DIR__ . '/' . \strtolower( $lang ) . '.php'; | ||
| return \file_exists( $file ) ? require $file : []; |
| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-03-01 16:10:48 GMT-0800 |
| Commit | f1a22c34aa45d9b7060e73d8b9ef144701945493 |
| Parent | ff0d78b |
| Delta | 1 line added, 1 line removed |