Fix naming of OutputEditor() to be outputEditor()

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-01-17 03:18:49 +00:00
committed by WineHQ
parent 17de2854e0
commit 917851fceb
18 changed files with 37 additions and 44 deletions

View File

@@ -373,15 +373,12 @@ if ($aClean['sSub'])
/* output the appropriate editors depending on whether we are processing an application */
/* and a version or just a version */
if($oApp)
{
$oApp->OutputEditor($sVendor);
$oVersion->OutputEditor(false, false);
} else
{
$oVersion->OutputEditor(false, false);
}
$oTest->OutputEditor($aClean['sDistribution']);
$oApp->outputEditor($sVendor);
$oVersion->outputEditor(false, false);
$oTest->outputEditor($aClean['sDistribution']);
echo html_frame_start("Reply text", "90%", "", 0);
echo "<table width='100%' border=0 cellpadding=2 cellspacing=0>\n";
echo '<tr valign=top><td class="color0"><b>email Text</b></td>',"\n";

View File

@@ -53,7 +53,7 @@ if ($aClean['sSub'])
Maintainer::ObjectDisplayQueueProcessingHelp();
$oMaintainer = new maintainer($aClean['iMaintainerId']);
$oMaintainer->OutputEditor();
$oMaintainer->outputEditor();
echo "<table border=1 cellpadding=2 cellspacing=0 style='margin-left:auto; margin-right:auto'>\n";

View File

@@ -98,7 +98,7 @@ if ($aClean['sSub'])
echo html_back_link(1, $_SERVER['PHP_SELF']);
$oTest->OutputEditor();
$oTest->outputEditor();
echo html_frame_start("Reply text", "90%", "", 0);
echo "<table width='100%' border=0 cellpadding=2 cellspacing=0>\n";
echo '<tr valign=top><td class="color0"><b>email Text</b></td>',"\n";

View File

@@ -39,7 +39,7 @@ else
echo "<form method=\"post\" action=\"editAppFamily.php\">\n";
$oApp->OutputEditor("");
$oApp->outputEditor("");
echo '<table border=0 cellpadding=6 cellspacing=0 width="100%">', "\n";
echo '<tr><td colspan=2 align=center><input type="submit" name=sSubmit value="Update Database"></td></tr>',"\n";

View File

@@ -45,7 +45,7 @@ if(!empty($aClean['sSub']))
echo "<form method=post action='editAppNote.php'>\n";
/* display the editor for this note */
$oNote->OutputEditor();
$oNote->outputEditor();
echo '<center>';
echo '<input type="submit" name=sPreview value="Preview">&nbsp',"\n";

View File

@@ -28,9 +28,9 @@ if(!empty($aClean['sSubmit']))
echo "<form method=post action='editAppVersion.php'>\n";
if($_SESSION['current']->hasPriv("admin"))
$oVersion->OutputEditor(true, true); /* false = not allowing the user to modify the parent application */
$oVersion->outputEditor(true, true); /* false = not allowing the user to modify the parent application */
else
$oVersion->OutputEditor(false, true); /* false = not allowing the user to modify the parent application */
$oVersion->outputEditor(false, true); /* false = not allowing the user to modify the parent application */
echo '<table border=0 cellpadding=2 cellspacing=0 width="100%">',"\n";
echo '<tr><td colspan=2 align=center class=color2><input type="submit" name="sSubmit" value="Update Database" /></td></tr>',"\n";
@@ -87,7 +87,7 @@ if(!empty($aClean['sSubmit']))
echo "</form>";
/* Download URL editor */
echo downloadurl::OutputEditor($oVersion, "editAppVersion.php");
echo downloadurl::outputEditor($oVersion, "editAppVersion.php");
/* only admins can move versions */
if($_SESSION['current']->hasPriv("admin"))

View File

@@ -29,7 +29,7 @@ else
echo '<form name="sQform" action="'.$_SERVER['PHP_SELF'].'" method="post" enctype="multipart/form-data">',"\n";
$oDistribution->OutputEditor();
$oDistribution->outputEditor();
echo '<tr valign=top><td class=color3 align=center colspan=2>',"\n";
echo '<input name="sSubmit" type="submit" value="Submit" class="button" >&nbsp',"\n";

View File

@@ -22,7 +22,7 @@ else
// Show the form
echo '<form name="sQform" action="'.$_SERVER['PHP_SELF'].'" method="post" enctype="multipart/form-data">',"\n";
$oVendor->OutputEditor();
$oVendor->outputEditor();
echo '<tr valign=top><td class=color3 align=center colspan=2>',"\n";
echo '<input name="sSubmit" type="submit" value="Submit" class="button" >&nbsp',"\n";