<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[13529] trunk/wp-admin: Move Upload folder settings to Options -&gt; Media.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/13529">13529</a></dd>
<dt>Author</dt> <dd>dd32</dd>
<dt>Date</dt> <dd>2010-03-01 12:13:15 +0000 (Mon, 01 Mar 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Move Upload folder settings to Options -&gt; Media. Props nacin. Fixes <a href="http://trac.wordpress.org/ticket/11687">#11687</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminoptionsmediaphp">trunk/wp-admin/options-media.php</a></li>
<li><a href="#trunkwpadminoptionsmiscphp">trunk/wp-admin/options-misc.php</a></li>
<li><a href="#trunkwpadminoptionsphp">trunk/wp-admin/options.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminoptionsmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options-media.php (13528 => 13529)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options-media.php        2010-03-01 11:57:03 UTC (rev 13528)
+++ trunk/wp-admin/options-media.php        2010-03-01 12:13:15 UTC (rev 13529)
</span><span class="lines">@@ -90,6 +90,34 @@
</span><span class="cx"> &lt;?php do_settings_fields('media', 'embeds'); ?&gt;
</span><span class="cx"> &lt;/table&gt;
</span><span class="cx"> 
</span><ins>+&lt;h3&gt;&lt;?php _e('Uploading Files'); ?&gt;&lt;/h3&gt;
+&lt;table class=&quot;form-table&quot;&gt;
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;upload_path&quot;&gt;&lt;?php _e('Store uploads in this folder'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;&lt;input name=&quot;upload_path&quot; type=&quot;text&quot; id=&quot;upload_path&quot; value=&quot;&lt;?php echo esc_attr(get_option('upload_path')); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;
+&lt;span class=&quot;description&quot;&gt;&lt;?php _e('Default is &lt;code&gt;wp-content/uploads&lt;/code&gt;'); ?&gt;&lt;/span&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+
+&lt;tr valign=&quot;top&quot;&gt;
+&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;upload_url_path&quot;&gt;&lt;?php _e('Full URL path to files'); ?&gt;&lt;/label&gt;&lt;/th&gt;
+&lt;td&gt;&lt;input name=&quot;upload_url_path&quot; type=&quot;text&quot; id=&quot;upload_url_path&quot; value=&quot;&lt;?php echo esc_attr( get_option('upload_url_path')); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;
+&lt;span class=&quot;description&quot;&gt;&lt;?php _e('Configuring this is optional. By default, it should be blank.'); ?&gt;&lt;/span&gt;
+&lt;/td&gt;
+&lt;/tr&gt;
+
+&lt;tr&gt;
+&lt;th scope=&quot;row&quot; colspan=&quot;2&quot; class=&quot;th-full&quot;&gt;
+&lt;label for=&quot;uploads_use_yearmonth_folders&quot;&gt;
+&lt;input name=&quot;uploads_use_yearmonth_folders&quot; type=&quot;checkbox&quot; id=&quot;uploads_use_yearmonth_folders&quot; value=&quot;1&quot;&lt;?php checked('1', get_option('uploads_use_yearmonth_folders')); ?&gt; /&gt;
+&lt;?php _e('Organize my uploads into month- and year-based folders'); ?&gt;
+&lt;/label&gt;
+&lt;/th&gt;
+&lt;/tr&gt;
+
+&lt;?php do_settings_fields('media', 'uploads'); ?&gt;
+&lt;/table&gt;
+
</ins><span class="cx"> &lt;?php do_settings_sections('media'); ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p class=&quot;submit&quot;&gt;
</span></span></pre></div>
<a id="trunkwpadminoptionsmiscphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options-misc.php (13528 => 13529)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options-misc.php        2010-03-01 11:57:03 UTC (rev 13528)
+++ trunk/wp-admin/options-misc.php        2010-03-01 12:13:15 UTC (rev 13529)
</span><span class="lines">@@ -25,47 +25,19 @@
</span><span class="cx"> 
</span><span class="cx"> &lt;form method=&quot;post&quot; action=&quot;options.php&quot;&gt;
</span><span class="cx"> &lt;?php settings_fields('misc'); ?&gt;
</span><del>-&lt;?php if ( !is_multisite() ) { ?&gt;
-&lt;h3&gt;&lt;?php _e('Uploading Files'); ?&gt;&lt;/h3&gt;
-&lt;table class=&quot;form-table&quot;&gt;
-&lt;tr valign=&quot;top&quot;&gt;
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;upload_path&quot;&gt;&lt;?php _e('Store uploads in this folder'); ?&gt;&lt;/label&gt;&lt;/th&gt;
-&lt;td&gt;&lt;input name=&quot;upload_path&quot; type=&quot;text&quot; id=&quot;upload_path&quot; value=&quot;&lt;?php echo esc_attr(get_option('upload_path')); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;
-&lt;span class=&quot;description&quot;&gt;&lt;?php _e('Default is &lt;code&gt;wp-content/uploads&lt;/code&gt;'); ?&gt;&lt;/span&gt;
-&lt;/td&gt;
-&lt;/tr&gt;
</del><span class="cx"> 
</span><del>-&lt;tr valign=&quot;top&quot;&gt;
-&lt;th scope=&quot;row&quot;&gt;&lt;label for=&quot;upload_url_path&quot;&gt;&lt;?php _e('Full URL path to files'); ?&gt;&lt;/label&gt;&lt;/th&gt;
-&lt;td&gt;&lt;input name=&quot;upload_url_path&quot; type=&quot;text&quot; id=&quot;upload_url_path&quot; value=&quot;&lt;?php echo esc_attr( get_option('upload_url_path')); ?&gt;&quot; class=&quot;regular-text code&quot; /&gt;
-&lt;span class=&quot;description&quot;&gt;&lt;?php _e('Configuring this is optional. By default, it should be blank.'); ?&gt;&lt;/span&gt;
-&lt;/td&gt;
-&lt;/tr&gt;
-
-&lt;tr&gt;
-&lt;th scope=&quot;row&quot; colspan=&quot;2&quot; class=&quot;th-full&quot;&gt;
-&lt;label for=&quot;uploads_use_yearmonth_folders&quot;&gt;
-&lt;input name=&quot;uploads_use_yearmonth_folders&quot; type=&quot;checkbox&quot; id=&quot;uploads_use_yearmonth_folders&quot; value=&quot;1&quot;&lt;?php checked('1', get_option('uploads_use_yearmonth_folders')); ?&gt; /&gt;
-&lt;?php _e('Organize my uploads into month- and year-based folders'); ?&gt;
-&lt;/label&gt;
-&lt;/th&gt;
-&lt;/tr&gt;
-&lt;?php do_settings_fields('misc', 'default'); ?&gt;
-&lt;/table&gt;
-
</del><span class="cx"> &lt;table class=&quot;form-table&quot;&gt;
</span><del>-
</del><span class="cx"> &lt;tr&gt;
</span><span class="cx"> &lt;th scope=&quot;row&quot; class=&quot;th-full&quot;&gt;
</span><span class="cx"> &lt;label for=&quot;use_linksupdate&quot;&gt;
</span><span class="cx"> &lt;input name=&quot;use_linksupdate&quot; type=&quot;checkbox&quot; id=&quot;use_linksupdate&quot; value=&quot;1&quot;&lt;?php checked('1', get_option('use_linksupdate')); ?&gt; /&gt;
</span><del>-&lt;?php _e('Track Links&amp;#8217; Update Times') ?&gt;
</del><ins>+&lt;?php _e('Track links&amp;#8217; update times') ?&gt;
</ins><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;/th&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><del>-
</del><ins>+&lt;?php do_settings_fields('misc', 'default'); ?&gt;
</ins><span class="cx"> &lt;/table&gt;
</span><del>-&lt;?php } ?&gt;
</del><ins>+
</ins><span class="cx"> &lt;?php do_settings_sections('misc'); ?&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p class=&quot;submit&quot;&gt;
</span><span class="lines">@@ -75,4 +47,4 @@
</span><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;/div&gt;
</span><span class="cx"> 
</span><del>-&lt;?php include('./admin-footer.php'); ?&gt;
</del><ins>+&lt;?php include('./admin-footer.php'); ?&gt;
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpadminoptionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/options.php (13528 => 13529)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/options.php        2010-03-01 11:57:03 UTC (rev 13528)
+++ trunk/wp-admin/options.php        2010-03-01 12:13:15 UTC (rev 13529)
</span><span class="lines">@@ -27,8 +27,8 @@
</span><span class="cx"> $whitelist_options = array(
</span><span class="cx">         'general' =&gt; array( 'blogname', 'blogdescription', 'gmt_offset', 'date_format', 'time_format', 'start_of_week', 'timezone_string' ),
</span><span class="cx">         'discussion' =&gt; array( 'default_pingback_flag', 'default_ping_status', 'default_comment_status', 'comments_notify', 'moderation_notify', 'comment_moderation', 'require_name_email', 'comment_whitelist', 'comment_max_links', 'moderation_keys', 'blacklist_keys', 'show_avatars', 'avatar_rating', 'avatar_default', 'close_comments_for_old_posts', 'close_comments_days_old', 'thread_comments', 'thread_comments_depth', 'page_comments', 'comments_per_page', 'default_comments_page', 'comment_order', 'comment_registration' ),
</span><del>-        'misc' =&gt; array( 'use_linksupdate', 'uploads_use_yearmonth_folders', 'upload_path', 'upload_url_path' ),
-        'media' =&gt; array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type', 'embed_autourls', 'embed_size_w', 'embed_size_h' ),
</del><ins>+        'misc' =&gt; array( 'use_linksupdate' ),
+        'media' =&gt; array( 'thumbnail_size_w', 'thumbnail_size_h', 'thumbnail_crop', 'medium_size_w', 'medium_size_h', 'large_size_w', 'large_size_h', 'image_default_size', 'image_default_align', 'image_default_link_type', 'embed_autourls', 'embed_size_w', 'embed_size_h', 'uploads_use_yearmonth_folders', 'upload_path', 'upload_url_path' ),
</ins><span class="cx">         'privacy' =&gt; array( 'blog_public' ),
</span><span class="cx">         'reading' =&gt; array( 'posts_per_page', 'posts_per_rss', 'rss_use_excerpt', 'blog_charset', 'show_on_front', 'page_on_front', 'page_for_posts' ),
</span><span class="cx">         'writing' =&gt; array( 'default_post_edit_rows', 'use_smilies', 'default_category', 'default_email_category', 'use_balanceTags', 'default_link_category', 'enable_app', 'enable_xmlrpc' ),
</span></span></pre>
</div>
</div>

</body>
</html>