Attached is a first attempt at Drupal 5.0 compatibility
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | drupal-5.patch | 14.65 KB | njivy |
| update-to-drupal-5.patch | 13.32 KB | njivy |
Attached is a first attempt at Drupal 5.0 compatibility
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | drupal-5.patch | 14.65 KB | njivy |
| update-to-drupal-5.patch | 13.32 KB | njivy |
Comments
Comment #1
RobRoy commentedThanks for the start njivy! Looks pretty good, one thing I noticed after a quick look is your t() place holders aren't matching, need to replace the array() with the accurate placeholder string. For example,
Wrong:
t('Some thing @here', array('%here' => $val));
Right:
t('Some thing @here', array('@here' => $val));
Comment #2
RobRoy commentedOh, and the .info should have this line too:
version = "$Name$"
See http://drupal.org/node/101009.
Thanks! Keep it up! :D
Comment #3
njivy commentedThanks, RobRoy.
This patch includes the optional version data in the .info file. I reviewed the t() variables, too.
Comment #4
njivy commentedThere are a few more problems that the patch does not resolve.
My local copy has been modified in other special ways. Would someone make a new patch?
Comment #5
RobRoy commentedWent ahead and ported Notify. New dev branch will be up soon. Please test. Thanks!
Comment #6
(not verified) commented