stronk7
0be16c1d8c
mssql doesn't support aliases nor position numbers in the
...
GROUP BY clause. Just columns and expressions.
2006-09-01 18:24:09 +00:00
stronk7
8351e29517
Introduced one function to calculate the proper "AS"
...
keyword for columns. All DB seems to support it but
PostgreSQL require it!
2006-09-01 17:45:02 +00:00
ethem
d69ce8d4eb
Echecks can not be cancelled.
...
2 actions only for echecks: auth_capture and credit
2006-09-01 17:16:08 +00:00
ethem
0c76d7e375
New string: paymentmethod
2006-09-01 16:43:52 +00:00
stronk7
e9f02dafca
New md5key fields and associated indexes.
...
Now hotpot should be 100% cross-db. Thanks Gordon!
2006-09-01 15:36:49 +00:00
ethem
a2cfb0ec00
FFFFFFFFAAAAAANNNNNNTTTTTAAAAASSSSTTTTTIIIIICCCCC
...
Echeck is ready for usage. I've been buying access into some test courses by echeck. :-)
2006-09-01 15:18:22 +00:00
ethem
0fae43aa7b
+ Don't show AVS message if not applicable.
...
+ Email message that translated instead of english if cc type and payment method will be autoconfigured.
2006-09-01 15:05:36 +00:00
moodler
4dc40740ba
New installer lang files.
2006-09-01 14:30:58 +00:00
bobopinna
773534f4a2
Added multi-attemps support
2006-09-01 10:17:01 +00:00
toyomoyo
20aeb4b8e3
utf8 migrate support for site with roles active, resolved isstudent legacy problem, implemented $CFG->notloggedinroleid
2006-09-01 09:25:34 +00:00
ethem
7222c36bf8
* New strings for Authorize.net eCheck.
...
Authorize.Net provides an exclusive, fully integrated electronic check payment method, eCheck.Net.
Using eCheck.Net, merchants can accept and process payments from consumer and corporate bank accounts
directly from their Web site or through the Authorize.Net Virtual Terminal. By accepting electronic checks,
you expand the payment options available to new and existing customers, enhancing customer loyalty and
potentially increasing sales.
+ Lower Fees - Lower rates than credit cards or PayPal.
+ More Efficient - eCheck.Net does everything online, eliminating the cost and inconvenience of manually
processing paper checks and waiting for checks in the mail.
+ Fully Integrated Solution - No third-party integration required implementing eCheck.Net is easy
for merchants already using the Authorize.Net Payment Gateway.
+ Integrated Reporting - Provides a combined view of all eCheck.Net and credit card payment transactions.
Reconcile payment and billing activity using online reports and statements.
+ Ship Product Sooner - Improved up-front transaction validation that returns the status of transactions faster.
+ Security - Authorize.Net uses the latest 128-bit Secure Socket Layer (SSL) technology for
secure Internet Protocol (IP) transactions.
2006-09-01 09:04:11 +00:00
gbateson
e1af293f5f
fix bug MDL_6419
2006-09-01 08:55:43 +00:00
moodler
9aeeb39286
forum subscriptions use capabilities
2006-09-01 06:56:24 +00:00
moodler
9ebcb4d28e
if role_assign is called by the current user on themselves, then reload
...
the capabilities table
2006-09-01 06:30:01 +00:00
moodler
1dc1f03795
More flexible role_unassign() that allows setting of any combination of arguments
2006-09-01 06:10:45 +00:00
gbateson
a70b3fbb4c
correct the detection of HotPot 2.0 backups (from Moodle 1.5)
2006-09-01 04:24:34 +00:00
gbateson
3044600bf3
add md5key field to end of hotpot_questions and hotpot_strings
2006-09-01 04:20:19 +00:00
gbateson
5048c8d658
fixed typo on line 2
2006-09-01 02:18:41 +00:00
gbateson
1897e3ef95
replace MySQL-only indexes on text fields (hotpot_question.name + hotpot_strings.string) with two new md5key fields (hotpot_question.md5key + hotpot_strings.md5key), which are the MD5 hash of the respective text fields. Microincrement version number to 2006083101
2006-09-01 02:08:39 +00:00
stronk7
5f941d12ab
user->description can be NULLable (experimenting....)
2006-08-31 23:31:36 +00:00
stronk7
9b99c05f10
user->description can be NULLable (experimenting....)
2006-08-31 23:20:47 +00:00
stronk7
6c76032bc1
course_categories->description can be NULLable (experimenting....)
2006-08-31 23:17:23 +00:00
stronk7
1d39207fae
course_categories->description can be NULLable (experimenting....)
2006-08-31 23:04:15 +00:00
stronk7
17c9113752
This condition was preventing new installs sometimes
2006-08-31 22:42:04 +00:00
stronk7
a0abf36ddd
This condition was preventing new installs sometimes.
2006-08-31 22:33:18 +00:00
skodak
441470ff03
fixed problem with applying of default settings during install - choices can not be constructed yet
2006-08-31 22:17:47 +00:00
skodak
dd04ab499e
fixed default values in apply_default_exception_settings(); several values in lib/default.php are wrong, but I guess we do not need to fix them because it as replaced by the new administration framowork ;-)
2006-08-31 21:50:22 +00:00
skodak
3a25fa7286
'prefix' can only be defined in config.php, it can not be changed or stored in database ;-)
2006-08-31 21:15:12 +00:00
rtcn2
9fb0f61a03
missing comma inserted line 752, removed comma from line 753
2006-08-31 19:47:54 +00:00
stronk7
545196c55f
course->modinfo nullable and no default
2006-08-31 19:42:22 +00:00
stronk7
99215f2c6f
modinfo nullable and without default.
2006-08-31 19:39:18 +00:00
ethem
79c63c4415
+ New ENUM field: paymentmethod(cc,echeck);
...
Store in database and when calling authorize_action() pass this method. Hence, removed $method=AN_METHOD_CC from this function.
If a refund will be do, unset($order->paymentmethod); Because this field comes when joining(enrol_authorize)
+ AN_METHOD_CC and AN_METHOD_ECHECK is now lower case, because these fields are stored in database as enum.
Eloy's response:
They are lowercase because we decided to use lowercase identifiers everywhere and enum contents are,
from a DB perspective, identifiers.
Ok, NP. :)) set_config('an_acceptmethods', strtolower($CFG->an_acceptmethods)); solves this.
2006-08-31 18:24:37 +00:00
tjhunt
6459b8fc8d
Give a bit more information to the subclasses.
2006-08-31 16:59:52 +00:00
stronk7
a974b5a4d8
course->modinfo can be NULLable (experimenting....)
2006-08-31 16:59:29 +00:00
tjhunt
d3b92b4ba5
MDL-6418 - Grading of multiple choice questions broken
2006-08-31 16:59:05 +00:00
tjhunt
73d4db845e
New function choose_from_menu_yesno
2006-08-31 16:55:48 +00:00
skodak
2b53194573
fixed riskbitmask problems, sorry :-(
2006-08-31 16:01:41 +00:00
ethem
555759709c
If the method is AN_METHOD_CC submit cclastfour, don't send for ECHECK.
2006-08-31 15:46:53 +00:00
ethem
c024e8c6f2
Fixed fixo.
2006-08-31 15:10:24 +00:00
tjhunt
695d225c6a
Clarified comment.
2006-08-31 11:28:44 +00:00
bobopinna
77bf0c292d
Fixed a typo
2006-08-31 10:37:33 +00:00
bobopinna
0d699c2449
Fixed context selection
2006-08-31 10:29:16 +00:00
skodak
6086e1aab2
removing trustbitmask for now and comment from riskbitmask
2006-08-31 09:20:24 +00:00
thepurpleblob
2bb63d99c2
Fixed syntax error.
2006-08-31 09:17:57 +00:00
toyomoyo
4f83ae95ca
adding capabilities
2006-08-31 08:51:09 +00:00
skodak
be4486da83
capability riskbitmasks and user trustbitmask patch #1 see MDL-6412
2006-08-31 08:36:36 +00:00
bobopinna
2b3447c38a
Added capability support
2006-08-31 08:34:13 +00:00
moodler
86cbff7abd
Clean up for role_assign()
2006-08-31 08:30:28 +00:00
ethem
9f7f87a9a6
If the merchant does not accept ACH (echeck) method, set default payment method as AN_METHOD_CC.
2006-08-31 08:06:19 +00:00
moodler
f44152f44c
Added "enrol" parameter to role_assign which records how this assignment
...
was made
2006-08-31 07:58:53 +00:00