|
From: Jon O. <jon...@us...> - 2008-03-21 20:12:48
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29535 Modified Files: mx_functions_tools.php Log Message: Automessages...forgot to update HEAD Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mx_functions_tools.php 14 Mar 2008 20:40:58 -0000 1.25 --- mx_functions_tools.php 21 Mar 2008 20:12:45 -0000 1.26 *************** *** 2064,2074 **** //$this->temp_url = PORTAL_URL . this_kb_mxurl("mode=" . "article&k=" . $this->data['item_id'], false, true); ! $this->auto_message = "<br /><b>" . $this->langs['item_title'] . ":</b> " . $this->data['item_title'] . "<br />"; ! $this->auto_message .= "<b>" . $this->langs['author'] . ":</b> " . $this->data['item_author'] . "<br />"; ! $this->auto_message .= "<b>" . $this->langs['item_description'] . ":</b> <i>" . $this->data['item_desc'] . "</i><br />"; if ($action != MX_DELETED_NOTIFICATION) { ! $this->auto_message .= "<br /><b><a href=\"" . $this->temp_url . "\">" . $this->langs['read_full_item'] . "</a></b>"; } --- 2064,2074 ---- //$this->temp_url = PORTAL_URL . this_kb_mxurl("mode=" . "article&k=" . $this->data['item_id'], false, true); ! $this->auto_message = $this->langs['item_title'] . ": " . $this->data['item_title'] . "\n"; ! $this->auto_message .= $this->langs['author'] . ": " . $this->data['item_author'] . "\n"; ! $this->auto_message .= $this->langs['item_description'] . ": " . $this->data['item_desc'] . "\n"; if ($action != MX_DELETED_NOTIFICATION) { ! $this->auto_message .= "\n" . $this->langs['read_full_item'] . ": \n" . $this->temp_url . "\n"; } *************** *** 2076,2080 **** // Update message // ! $this->auto_message_update = "<br /><i>" . $this->langs['edited_item_info'] . $this->data['item_editor'] . "</i>" . "<br />"; // --- 2076,2080 ---- // Update message // ! $this->auto_message_update = $this->langs['edited_item_info'] . $this->data['item_editor'] . "\n"; // |