Project

General

Profile

Bug #20504 ยป 20090526_RFC_11189.diff

Administrator Admin, 2009-05-26 09:27

View differences:

t3lib/class.t3lib_modsettings.php (working copy)
#TODO need to add parameters
if ($useOwnForm AND trim($code)) {
$code = '
<form action="'.t3lib_div::getIndpEnv('SCRIPT_NAME').'" method="POST" name="'.$this->formName.'" enctype="'.$TYPO3_CONF_VARS['SYS']['form_enctype'].'">'.$code.'</form>';
<form action="' . t3lib_div::getIndpEnv('SCRIPT_NAME') . '" method="post" name="' . $this->formName . '" enctype="' . $TYPO3_CONF_VARS['SYS']['form_enctype'] . '">' . $code . '</form>';
}
return $code;
t3lib/class.t3lib_tsstyleconfig.php (working copy)
}
</script>
';
$content.= '<form action="'.($script?$script:t3lib_div::linkThisScript()).'" name="'.$this->ext_CEformName.'" method="POST" enctype="'.$GLOBALS["TYPO3_CONF_VARS"]["SYS"]["form_enctype"].'">';
$content .= '<form action="' . ($script ? $script : t3lib_div::linkThisScript()) . '" name="' . $this->ext_CEformName . '" method="post" enctype="' . $GLOBALS['TYPO3_CONF_VARS']['SYS']['form_enctype'] . '">';
$content.= $addFields;
# $content.= '<input type="Submit" name="submit" value="Update"><BR>';
$content.= $printFields;
typo3/sysext/beuser/mod/index.php (working copy)
$this->doc = t3lib_div::makeInstance('template');
$this->doc->backPath = $GLOBALS['BACK_PATH'];
$this->doc->setModuleTemplate('templates/beuser.html');
$this->doc->form='<form action="" method="POST">';
$this->doc->form = '<form action="" method="post">';
// JavaScript
$this->doc->JScode = $this->doc->wrapScriptTags('
typo3/sysext/rtehtmlarea/mod2/class.tx_rtehtmlarea_acronym_mod.php (working copy)
$this->doc->styleSheetFile = "";
$this->doc->styleSheetFile_post = "";
$this->doc->bodyTagAdditions = 'class="popupwin" onload="init();"';
$this->doc->form = '<form action="" id="content" name="content" method="POST">';
$this->doc->form = '<form action="" id="content" name="content" method="post">';
$JScode='
var dialog = window.opener.HTMLArea.Dialog.Acronym;
var plugin = dialog.plugin;
typo3/sysext/rtehtmlarea/mod5/class.tx_rtehtmlarea_user.php (working copy)
$this->doc->bodyTagAdditions = 'onload="Init();"';
$this->doc->form = '
<form action="" id="process" name="process" method="POST">
<form action="" id="process" name="process" method="post">
<input type="hidden" name="processContent" value="" />
<input type="hidden" name="returnUrl" value="'.htmlspecialchars(t3lib_div::getIndpEnv('REQUEST_URI')).'" />
';
typo3/sysext/taskcenter/task/index.php (working copy)
/* Setup document template */
$this->doc = t3lib_div::makeInstance('noDoc');
$this->doc->divClass = '';
$this->doc->form = '<form action="index.php" method="POST" name="editform">';
$this->doc->form = '<form action="index.php" method="post" name="editform">';
$this->backPath = $this->doc->backPath = $BACK_PATH;
$this->doc->loadPrototype();
$this->doc->JScode = ' <script language="javascript" type="text/javascript">
    (1-1/1)