add referer tag (all dynamic pages)
[bse.git] / Changes.txt
CommitLineData
1be64ebd
TC
1BSE 0.21 - unreleased
2========
3
4Bug fixes:
5
6 - thumb.pl would return content types with doubled image/ prefixes,
7 eg. image/image/jpeg
8
b23cb063
TC
9 - added [undeletable articles] to bse.cfg as a supplement to
10 @NO_DELETE. @NO_DELETE is now deprecated and may be removed in a
11 future release of BSE.
12 https://rt4.develop-help.com/Ticket/Display.html?id=1209
1be64ebd 13
e728024c
TC
14 - verbose output of generate.pl is now based on the template
15 admin/generate.tmpl
16
2897cd79 17BSE 0.20 - 22 Dec 2011
6abd8ce8
TC
18========
19
b27af108
TC
20Please read any NOTES below carefully.
21
6abd8ce8
TC
22 - store a truncated card number for credit card payments (both online
23 and email). Reinstate storage of the card holder name in ccName.
24 ccNumberHash is no longer populated.
25
26 - ifNeedDelivery (checkoutnew_base.tmpl) wasn't being reset on order
27 submission.
28
b27af108
TC
29 - the site_users table has been refactored into the bse_siteusers
30 table, removing the bill* fields and adding deliv* fields. Other
31 obsolete fields have also been removed.
32
33 NOTE: To preserve your registered users on upgrade, run the
34 provided schema/site_users_to_members.sql SQL through the mysql
35 tool. This will create entries in bse_siteusers corresponding to
36 those in your original site_users table. You MUST start with an
37 empty bse_siteusers table or the script will throw an error.
38
39 NOTE: Any configuration such as report definitions, query group
40 definitions should now refer to bse_siteusers instead of
41 site_users.
42
43 - Data::UUID 1.148 is now required
44
be262d15
TC
45 - remove target entry for the shop confirm action, which was
46 otherwise removed years ago. RT #1280.
47
fb10b11e
TC
48 - logon now starts a new session, preserving the cart. As a
49 side-effect this logs out the admin user, though this may
50 change. RT #1279.
51
52 - passing a new session id between the SSL and non-SSL versions of
53 the site is now validated. RT #1279.
54
f13d1b43
TC
55 NOTE: This requires that [site].secret be set to a value specific
56 to your site. Running:
57
58 openssl rand -base64 32
59
60 generates a suitable value.
61
fb10b11e
TC
62 - delete the session data for a site users session when they logoff.
63 As a side effect this will log out the admin user.
64
cd1c5bfa
TC
65 - allow dynamic content pages to display flashed messages with the
66 message tag. Note that not all actions flash a message.
67
6abd8ce8
TC
68Template updates:
69
b27af108
TC
70 - checkoutpay_base.tmpl - the name of the cardHolder payment field is
71 now ccName.
72
73 - admin/order_detail.tmpl - order ccPAN can be used to display the
74 truncated card number.
75
76 - user/options_billing_base.tmpl and its generated template have been
77 renamed with s/billing/delivery/ since it now contains delivery
78 details. The link to it from user/options(_base).tmpl has also
79 been updated.
80
81 - user/options_base.tmpl, user/register_base.tmpl,
82 admin/users/(add,edit,view).tmpl have been updated to match the new
83 site users schema.
84
fb10b11e
TC
85 - user/logon_base.tmpl, user/register_base.tmpl - updated the
86 "nothing is more permanent that a temporary solution" link text for
87 logon, register and recover password.
88
cd1c5bfa
TC
89 - shopitem.tmpl - display the flashed message, if any.
90
62e56298
TC
91 - removed the unused checkoutcard and checkoutconfirm templates
92
b27af108 93Internals:
6abd8ce8 94
b27af108
TC
95 - Squirrel::Table->make now looks for default_I<colname> when looking
96 for default values for a column.