Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Mon, Jul 7, 8:38 AM

in-portal

Index: trunk/admin/install/upgrade.php
===================================================================
--- trunk/admin/install/upgrade.php (revision 900)
+++ trunk/admin/install/upgrade.php (revision 901)
@@ -1,54 +1,54 @@
<td>
<img src="images/icon_install.gif" width="46" height="46" alt="" align="absmiddle">&nbsp;<span class="admintitle">Select Modules to Upgrade</span><br><br>
<?php section_header('Step '.$tmp_step.' - Select Modules'); ?>
<table border=0 cellpadding=0 cellspacing=0 width="100%" class="toolbar">
<?php include("install/toolbar.php"); ?>
</table>
<!-- toolbar button \\-->
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tableborder">
<tr valign="top">
<td width="60%" bgcolor="#F0F0F0">
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="4">
<?php
$i = 0;
foreach($Modules as $m)
{
echo "<TR class=\"table_color2\"><TD colspan=\"2\" align=\"left\" class=\"txt\">";
if($m['error'])
- echo "<INPUT TYPE=\"CHECKBOX\" NAME=\"modules[]\" VALUE=\"$m\" disabled />";
+ echo "<INPUT TYPE=\"CHECKBOX\" NAME=\"modules[]\" VALUE=\"{$m['module']}\" disabled />";
else
- echo "<INPUT TYPE=\"CHECKBOX\" NAME=\"modules[]\" VALUE=\"$m\" CHECKED=\"checked\">";
+ echo "<INPUT TYPE=\"CHECKBOX\" NAME=\"modules[]\" VALUE=\"{$m['module']}\" CHECKED=\"checked\">";
echo $m['module'].' ('.$m['curver'].' '.prompt_language('la_to').' '.$m['newver'].')';
if ($m['error'])
{
$open_url = "install/upgrade_errors.php?module={$m['module']}";
echo " (<span style=\"color: #FF0000; cursor: hand; cursor: pointer;\" onClick=\"CreatePopup('ModuleErrors', '$open_url');\">Pre-requisit test not passed!</span>)";
}
echo "</TD></TR>\n";
// $i++;
}
?>
<tr class="table_color1">
<td colspan="2"><?php echo int_hint(prompt_language("la_text_upgrade_disclaimer")); ?><br/></td>
</tr>
<tr class="table_color2">
<td colspan="2"><p class="error"><?php echo $ModuleError; ?></p><br/></td>
</tr>
<td>
<br>
<input TYPE="hidden" NAME ="state" VALUE="upgrade_process">
<input type="submit" name="submit_form" value="Select" class="button">
<input type="reset" name="Cancel" value="Cancel" class="button" ONCLICK = "history.go(-1);">
<input type="hidden" name="UserPass" VALUE="<?php echo $UserPass; ?>">
<input type="hidden" name="UserName" VALUE="<?php echo $UserName; ?>">
<input type="hidden" name="next_step" value="<?php echo $next_step;?>">
<input type="hidden" name="install_type" value="<?php echo $install_type;?>">
</td>
</tr>
</table>
</td>
\ No newline at end of file
Property changes on: trunk/admin/install/upgrade.php
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.3
\ No newline at end of property
+1.4
\ No newline at end of property

Event Timeline