Philipp or Mario, could you create the patch for me? I am not yet familiar with Gerrit.
You just have to make this for TYPO3 6.2 LTS :
In typo3/sysext/wizard_crpages/Classes/Controller/CreatePagesWizardModuleFunctionController.php :
Replace the line 116 with :
$data['pages'][$identifier]['hidden'] = GeneralUtility::_GP('hidePages') ? 1 : 0;
$data['pages'][$identifier]['nav_hide'] = GeneralUtility::_GP('hidePagesInMenus') ? 1 : 0;
Replace the line 161 with :
<input type="checkbox" name="hidePages" id="hidePages" value="1" /> <label for="hidePages">' . $GLOBALS['LANG']->getLL('wiz_newPages_hidePages') . '</label><br />
<input type="checkbox" name="hidePagesInMenus" id="hidePagesInMenus" value="1" /> <label for="hidePagesInMenus">' . $GLOBALS['LANG']->getLL('wiz_newPages_hidePagesInMenus') . '</label><br /><br />
In typo3/sysext/wizard_crpages/locallang.xlf:
Replace the lines 30, 31 and 32 with :
<trans-unit id="wiz_newPages_hidePages" xml:space="preserve">
<source>Hide new pages</source>
</trans-unit>
<trans-unit id="wiz_newPages_hidePagesInMenus" xml:space="preserve">
<source>Hide new pages in menus</source>
</trans-unit>
That's all...
Thanks