put the unsubscribe link in the CS notification template
This commit is contained in:
parent
eabffb0342
commit
de4da68884
5 changed files with 117 additions and 64 deletions
47
docs/upgrades/templates-7.4.0/PBtmpl0000000000000027.tmpl
Normal file
47
docs/upgrades/templates-7.4.0/PBtmpl0000000000000027.tmpl
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
#PBtmpl0000000000000027
|
||||
<table border="0" cellpadding="3" cellspacing="2">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="black" style="background-color:black;"><font color="white"><b style="color:white;"><tmpl_var username> has posted to one of your subscriptions</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#DFDFDF" style="background-color:#DFDFDF;"><a href="<tmpl_var url>"><font color="black"><tmpl_var url></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var content></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tmpl_if userDefined1>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var userDefined1></td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
<tmpl_if userDefined2>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var userDefined2></td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
<tmpl_if userDefined3>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var userDefined3></td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
<tmpl_if userDefined4>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var userDefined4></td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
<tmpl_if userDefined5>
|
||||
<tr>
|
||||
<td bgcolor="#F0F0F0" style="background-color:#F0F0F0;"><tmpl_var userDefined5></td>
|
||||
</tr>
|
||||
</tmpl_if>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><a href="<tmpl_var unsubscribeUrl>"><tmpl_var unsubscribeLinkText></a></p>
|
||||
|
|
@ -40,6 +40,8 @@ finish($session); # this line required
|
|||
sub addCanStartThreadToCS {
|
||||
my $session = shift;
|
||||
|
||||
print "\tAdding canStartThreadGroupId setting to Collaboration Systems.\n" unless ($quiet);
|
||||
|
||||
# add the columns required
|
||||
$session->db->write("ALTER TABLE Collaboration add column canStartThreadGroupId varchar(22) NOT NULL default 2 AFTER postGroupId");
|
||||
$session->db->write("ALTER TABLE Collaboration add column threadApprovalWorkflow varchar(22) NOT NULL default 'pbworkflow000000000003' AFTER approvalWorkflow");
|
||||
|
|
@ -58,8 +60,8 @@ sub addCanStartThreadToCS {
|
|||
|
||||
#-------------------------------------------------
|
||||
sub addKeywordTagging {
|
||||
my $session = shift;
|
||||
print "\tAdding a keyword tagging system.\n" unless ($quiet);
|
||||
my $session = shift;
|
||||
print "\tAdding a keyword tagging system.\n" unless ($quiet);
|
||||
$session->db->write("create table assetKeyword (
|
||||
keyword varchar(64) not null,
|
||||
assetId varchar(22) binary not null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue