mirror of
https://git.proxmox.com/git/pve-docs
synced 2025-04-30 18:28:46 +00:00

The core 'LanguageGetMagic' hook we used originally was was removed completely in version 1.33.0 (after being deprecated in 1.16.0). So transform into the new style, again adapted from: https://www.mediawiki.org/wiki/Manual:Parser_functions Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
8 lines
111 B
PHP
8 lines
111 B
PHP
<?php
|
|
|
|
$magicWords = [];
|
|
|
|
$magicWords['en'] = [
|
|
'pvedocs' => [ 0, 'pvedocs' ], # case-insensitive, name
|
|
];
|