Fix notice, and use wp_max_upload_size() to fill MAX_FILE_SIZE hidden field (used by supporting browsers for a client-side check). Fixes #10849 props sivel.
git-svn-id: http://svn.automattic.com/wordpress/trunk@13306 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13c2e250d4
commit
1982ea7d20
|
@ -17,10 +17,8 @@ class OPML_Import {
|
||||||
|
|
||||||
function dispatch() {
|
function dispatch() {
|
||||||
global $wpdb, $user_ID;
|
global $wpdb, $user_ID;
|
||||||
$step = $_POST['step'];
|
$step = isset( $_POST['step'] ) ? $_POST['step'] : 0;
|
||||||
if (!$step) $step = 0;
|
|
||||||
?>
|
|
||||||
<?php
|
|
||||||
switch ($step) {
|
switch ($step) {
|
||||||
case 0: {
|
case 0: {
|
||||||
include_once('admin-header.php');
|
include_once('admin-header.php');
|
||||||
|
@ -39,7 +37,7 @@ switch ($step) {
|
||||||
<p><?php _e('If a program or website you use allows you to export your links or subscriptions as OPML you may import them here.'); ?></p>
|
<p><?php _e('If a program or website you use allows you to export your links or subscriptions as OPML you may import them here.'); ?></p>
|
||||||
<div style="width: 70%; margin: auto; height: 8em;">
|
<div style="width: 70%; margin: auto; height: 8em;">
|
||||||
<input type="hidden" name="step" value="1" />
|
<input type="hidden" name="step" value="1" />
|
||||||
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
|
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo wp_max_upload_size(); ?>" />
|
||||||
<div style="width: 48%;" class="alignleft">
|
<div style="width: 48%;" class="alignleft">
|
||||||
<h3><label for="opml_url"><?php _e('Specify an OPML URL:'); ?></label></h3>
|
<h3><label for="opml_url"><?php _e('Specify an OPML URL:'); ?></label></h3>
|
||||||
<input type="text" name="opml_url" id="opml_url" size="50" class="code" style="width: 90%;" value="http://" />
|
<input type="text" name="opml_url" id="opml_url" size="50" class="code" style="width: 90%;" value="http://" />
|
||||||
|
|
Loading…
Reference in New Issue