Bug del auto group 1.0.2
Publicado: 21 Mar 2011, 00:00
Con el modo debug activado ,al editar un grupo y cambiar alguna opción ,sobre todo el rango ,el color y la posición en la layenda(tengo instalado el Group Legend Positioning ),salta este error del autogroup
linea 46 del language/es/mods/info_acp_auto_groups.php correspondiente a la variable de idioma que indica el bug
y añado tambien los cambios que hace el mod en includes/acp/acp_groups.php
buscar
añadir despues
y añado tambien la linea correspondiente del adm/style/auto_groups.html
y por ultimo el enlace al mod
http://www.phpbb-es.com/foro/viewtopic.php?f=75&t=24496
En el tema del mod en phpbb.com ,el bug esta reportado hace tiempo ,pero el autor del mod nunca ha dado la solución.
linea 245 de includes/functions_autogroup.php[phpBB Debug] PHP Notice: in file /includes/functions_autogroup.php on line 245: Undefined index: group_auto_default
Warning: Cannot modify header information - headers already sent by (output started at /home/mundoweb/public_html/foro/includes/functions.php:3772) in /home/mundoweb/public_html/foro/adm/index.php on line 150
Warning: Cannot modify header information - headers already sent by (output started at /home/mundoweb/public_html/foro/includes/functions.php:3772) in /home/mundoweb/public_html/foro/adm/index.php on line 152
Warning: Cannot modify header information - headers already sent by (output started at /home/mundoweb/public_html/foro/includes/functions.php:3772) in /home/mundoweb/public_html/foro/adm/index.php on line 153
Warning: Cannot modify header information - headers already sent by (output started at /home/mundoweb/public_html/foro/includes/functions.php:3772) in /home/mundoweb/public_html/foro/adm/index.php on line 154
Código: Seleccionar todo
$make_default = $group_attributes['group_auto_default'];
Código: Seleccionar todo
'DEFAULT_AUTO_GROUP' => 'Hacer automaticamente por defecto',
buscar
Código: Seleccionar todo
'message_limit' => request_var('group_message_limit', 0),
Código: Seleccionar todo
// auto groups mod
'min_days' => request_var('min_group_days', 0),
'max_days' => request_var('max_group_days', 0),
'min_warnings' => request_var('min_group_warnings', 0),
'max_warnings' => request_var('max_group_warnings', 0),
'min_posts' => request_var('min_group_posts', 0),
'max_posts' => request_var('max_group_posts', 0),
'auto_default' => isset($_POST['group_auto_default']),
Código: Seleccionar todo
<dl>
<dt><label for="group_auto_default">{L_DEFAULT_AUTO_GROUP} </label><br /><span>{L_DEFAULT_AUTO_GROUP_EXPLAIN}</span></dt>
<dd><input type="checkbox" name="group_auto_default" {S_GROUP_AUTO_DEFAULT} /></dd>
</dl>
http://www.phpbb-es.com/foro/viewtopic.php?f=75&t=24496
En el tema del mod en phpbb.com ,el bug esta reportado hace tiempo ,pero el autor del mod nunca ha dado la solución.