]> git.mxchange.org Git - friendica.git/commitdiff
Remove the setting description from the documentation since it isn't a hidden one...
authorMichael Vogel <icarus@dabo.de>
Fri, 11 Mar 2016 22:44:46 +0000 (23:44 +0100)
committerMichael Vogel <icarus@dabo.de>
Fri, 11 Mar 2016 22:44:46 +0000 (23:44 +0100)
doc/htconfig.md
mod/admin.php
view/templates/admin_site.tpl

index f9c92bfa084efafd475958af90c4a169aa86dd80..a36e0bef22a8ab7bc40e646dd09e5dac97e3d960 100644 (file)
@@ -64,9 +64,6 @@ line to your .htconfig.php:
 * throttle_limit_week - Maximum number of posts that a user can send per week with the API.
 * throttle_limit_month - Maximum number of posts that a user can send per month with the API.
 * wall-to-wall_share (Boolean) - Displays forwarded posts like "wall-to-wall" posts.
-* worker (Boolean) - (Experimental) Use the worker system instead of calling several background processes. Reduces the overall load and speeds up item delivery.
-* worker_dont_fork (Boolean) - if enabled, the workers are only called from the poller process. Useful on systems that permit the use of "proc_open".
-* worker_queues - Number of parallel workers. Default value is 10 queues.
 * xrd_timeout - Timeout for fetching the XRD links. Default value is 20 seconds.
 
 ## service_class ##
index 57a004f51a6866d18fc841f194017bdd325857a4..28c8ed15c226002ee42f3a4a2f43b07597e5edcd 100644 (file)
@@ -909,6 +909,7 @@ function admin_page_site(&$a) {
                '$advanced' => t('Advanced'),
                '$portable_contacts' => t('Auto Discovered Contact Directory'),
                '$performance' => t('Performance'),
+               '$worker_title' => t('Worker'),
                '$relocate'=> t('Relocate - WARNING: advanced function. Could make this server unreachable.'),
                '$baseurl' => $a->get_baseurl(true),
                // name, label, value, help string, extra data...
index d43c6a8c4a3283025716e4b9f249f3a7cc3e5256..f22319b695ec7029a7fde8ddcc261569edd24ee6 100644 (file)
        {{include file="field_input.tpl" field=$max_comments}}
        {{include file="field_checkbox.tpl" field=$proxy_disabled}}
        {{include file="field_checkbox.tpl" field=$old_pager}}
+       <div class="submit"><input type="submit" name="page_site" value="{{$submit|escape:'html'}}" /></div>
 
+       <h3>{{$worker_title}}</h3>
        {{include file="field_checkbox.tpl" field=$worker}}
        {{include file="field_input.tpl" field=$worker_queues}}
        {{include file="field_checkbox.tpl" field=$worker_dont_fork}}
-
        <div class="submit"><input type="submit" name="page_site" value="{{$submit|escape:'html'}}" /></div>
 
        </form>