
sartak at bestpractical
May 6, 2008, 5:22 PM
Post #1 of 1
(62 views)
Permalink
|
|
r12121 - in rt/branches/3.8-TESTING: . html/Dashboards
|
|
Author: sartak Date: Tue May 6 20:22:13 2008 New Revision: 12121 Modified: rt/branches/3.8-TESTING/ (props changed) rt/branches/3.8-TESTING/html/Dashboards/Subscription.html rt/branches/3.8-TESTING/sbin/rt-email-dashboards.in Log: r55147[at]onn: sartak | 2008-05-06 19:56:04 -0400 We no longer need to store the dashboard privacy in the subscription Modified: rt/branches/3.8-TESTING/html/Dashboards/Subscription.html ============================================================================== --- rt/branches/3.8-TESTING/html/Dashboards/Subscription.html (original) +++ rt/branches/3.8-TESTING/html/Dashboards/Subscription.html Tue May 6 20:22:13 2008 @@ -55,7 +55,6 @@ <form action="<%$RT::WebPath%>/Dashboards/Subscription.html" method="post" enctype="multipart/form-data"> <input type="hidden" class="hidden" name="DashboardId" value="<% $SubscriptionObj->SubValue('DashboardId') %>" /> -<input type="hidden" class="hidden" name="Privacy" value="<% $SubscriptionObj->SubValue('Privacy') %>" /> <table width="100%" border="0"> <tr> Modified: rt/branches/3.8-TESTING/sbin/rt-email-dashboards.in ============================================================================== --- rt/branches/3.8-TESTING/sbin/rt-email-dashboards.in (original) +++ rt/branches/3.8-TESTING/sbin/rt-email-dashboards.in Tue May 6 20:22:13 2008 @@ -183,7 +183,7 @@ my $dashboard = RT::Dashboard->new($currentuser); - $dashboard->Load($subscription->SubValue('Privacy'), $subscription->SubValue('DashboardId')) + $dashboard->LoadById($subscription->SubValue('DashboardId')) or die loc( "Unable to load dashboard [_1] of subscription [_2] for user [_3]", $subscription->SubValue('DashboardId'), _______________________________________________ Rt-commit mailing list Rt-commit[at]lists.bestpractical.com http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|