1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Fixes #4259 - Manual plugin upload.

This commit is contained in:
Cameron
2020-11-02 10:36:07 -08:00
parent cc223aa7f6
commit 30330bcaaa

View File

@@ -354,7 +354,7 @@ class plugin_ui extends e_admin_ui
$text = e107::getPlugin()->install($id); $text = e107::getPlugin()->install($id);
$log = e107::getAdminLog(); // $log = e107::getAdminLog();
if ($text === FALSE) if ($text === FALSE)
{ {
@@ -521,7 +521,7 @@ class plugin_ui extends e_admin_ui
$max_file_size = get_user_max_upload(); $max_file_size = get_user_max_upload();
$text = " $text = "
<form enctype='multipart/form-data' method='post' action='".e_SELF."'> <form enctype='multipart/form-data' method='post' action='".e_SELF."?mode=avail&action=upload'>
<table class='table adminform'> <table class='table adminform'>
<colgroup> <colgroup>
<col class='col-label' /> <col class='col-label' />
@@ -548,7 +548,7 @@ class plugin_ui extends e_admin_ui
return $text; return $text;
e107::getRender()->tablerender(ADLAN_98.SEP.EPL_ADLAN_38, $text); // e107::getRender()->tablerender(ADLAN_98.SEP.EPL_ADLAN_38, $text);
} }