Seite 3 von 3

Re: Automatische Antwort Debug meldung?

Verfasst: 15.05.2012 17:46
von Shorty1968
Öffne includes/acp/acp_auto_answer.php
open includes/acp/acp_auto_answer.php

Suche:
Find:

Code: Alles auswählen

if ($aa_config['user_id'] == '')
					{
						$error[] = array('data' => $username[0], 'error' => 'USER');
					}
				}
				else
				{
					$error[] = array('data' => $username[0], 'error' => 'USER');
				}
Ersetze mit:
replace with:

Code: Alles auswählen

if ($aa_config['user_id'] == '')
					{
						$error['data'] = 'username';
					}
				}
				else
				{
					$error['data'] = 'username';
				}
Öffne includes/functions_auto_answer.php
open includes/functions_auto_answer.php
Suche:
Find:

Code: Alles auswählen

$lenght = strlen($searchwords[$i]);
Ersetze mit:
replace with:

Code: Alles auswählen

$lenght = array($searchwords[$i]);