2011-01-09, 22:51:01
A new version (0.7) is available, which adds an I18N view on the admin pages tab, which shows all pages and their language variants in a table.
Installation (additional)
To make best use of the add links on the I18N view (some fields prefilled), you must patch the file admin/edit.php as follows:
Installation (additional)
To make best use of the add links on the I18N view (some fields prefilled), you must patch the file admin/edit.php as follows:
Code:
...
if ($id)
{
...
}
else
{
// --- add the following lines
if (isset($_GET['parent'])) $parent = $_GET['parent'];
if (isset($_GET['template'])) $template = $_GET['template'];
if (isset($_GET['metak'])) $metak = $_GET['metak'];
if (isset($_GET['metad'])) $metad = $_GET['metad'];
if (isset($_GET['menu-enable'])) $menuStatus = $_GET['menu-enable'];
if (isset($_GET['menu-order'])) $menuOrder = $_GET['menu-order'];
if (isset($_GET['private'])) $private = $_GET['private'];
if (isset($_GET['title'])) $title = $_GET['title'];
if (isset($_GET['menu'])) $menu = $_GET['menu'];
if (isset($_GET['newid'])) $url = $_GET['newid'];
// --- add end
$buttonname = $i18n['BTN_SAVEPAGE'];
}
...