View Single Post
  #21  
Old 03-09-2016, 11:56 AM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 118,350
Abronsyth is on a distinguished road
Default

((That's what I thought, but it certainly looks like it ought to be getting it right, to me)):
PHP Code:
    if($mysidia->input->post("reason")){
        
$pm = new PrivateMessage(); 
        
$pm->setsender($mysidia->user->username); // Will appear to be sent by the reporter.
        
$pm->setrecipient($admin->username);
        
$pm->setmessage("<b>⚠ </b> "."Pet Profile Reported""<b>Offending Pet:</b> {$this->adopt->getAdoptID()} <a target=\"_BLANK\" href=\"../../levelup/click/{$this->adopt->getAdoptID()}\">{$this->adopt->getName()}</a> <br/><b>Pet Owner:</b> <a href=\"../../profile/view/{$this->adopt->getOwner()}\" target=\"_BLANK\">{$this->adopt->getOwner()}</a><br/><b>Reason For Report:</b> ".$reason."<br><b>Message Being Reported:</b><br><blockquote>".$this->adopt->getPetBio()."</blockquote><br><b>Report Delivered By:</b> {$mysidia->user->username}");
        
$pm->post();  
    } 
That's right where it's at, part of the report function in levelup.php
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote