MyBB.de Forum
pm ohne betreff - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: pm ohne betreff (/thread-10496.html)



pm ohne betreff - MH_Razen - 19.08.2008

wie kann man einstellen das man für die pms keinen betreff mehr braucht - bei uns werdeb oft nur kurze hinweise verschickt und da nervt es immer nen betreff zu senden...


RE: pm ohne betreff - StefanT - 19.08.2008

Man muss doch keinen Betreff eingeben.


RE: pm ohne betreff - MH_Razen - 19.08.2008

http://razen.onpw.de/Stuff/3.jpg

sry für die schlechte jpg qualität, aber ich denk man kanns lesen..


RE: pm ohne betreff - StefanT - 19.08.2008

Ok, bei MyBB 1.2 ging das noch. Ganz ohne Betreff es aber auch nicht. Bisher wurde da ja ein Standard-Text eingefügt.


RE: pm ohne betreff - MH_Razen - 19.08.2008

und wie bekomm ichs hin dass das wieder so ist?


RE: pm ohne betreff - Finn3x - 19.08.2008

Würde es auch gerne so haben das man keim Betreff haben muss sondern das einfach ein RE: eingefügt wird wen ' s leer bleibt das Feld..

Grüße


RE: pm ohne betreff - Michael - 19.08.2008

Versuche mal dies: Öffne die Datei inc/datahandlers/pm.php und suche nach:
PHP-Code:
    function verify_subject()
    {
        
$subject = &$this->data['subject'];

        
// Subject is over 85 characters, too long.
        
if(my_strlen($subject) > 85)
        {
            
$this->set_error("too_long_subject");
            return 
false;
        }
        
// No subject, apply the default [no subject]
        
if(!trim($subject))
        {
            
$this->set_error("missing_subject");
            return 
false;
        }
        return 
true;
    } 
Ersetzen durch:
PHP-Code:
    function verify_subject()
    {
        
$subject = &$this->data['subject'];

        
// Subject is over 85 characters, too long.
        
if(my_strlen($subject) > 85)
        {
            
$this->set_error("too_long_subject");
            return 
false;
        }
        
// No subject, apply the default [no subject]
        
if(!trim($subject))
        {
            
$this->data['subject'] = "Kein Betreff";
        }
        return 
true;
    } 



RE: pm ohne betreff - MH_Razen - 19.08.2008

funktioniert, vielen dank