Closed (fixed)
Project:
Pathauto
Version:
5.x-2.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
3 Mar 2007 at 19:12 UTC
Updated:
8 Apr 2007 at 22:31 UTC
Jump to comment: Most recent file
Some of the default patterns are "dangerous" - http://drupal.org/node/73232 - and should be changed.
Currently all of the patterns are dangerous to one extent or another.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | non_dangerous_defaults.patch | 3.64 KB | greggles |
Comments
Comment #1
gregglesand I consider this critical (and will fix it shortly) now that we've got the 2.x branch I can change defaults again. Yay!
Comment #2
greggleshow about the following default patterns
- $settings['patterndefault'] = t('[title]');
+ $settings['patterndefault'] = t('content/[title]');
- $settings['patterndefault'] = t('[vocab]/[catpath]');
+ $settings['patterndefault'] = t('category/[vocab]/[catpath]');
- $settings['patterndefault'] = t('user/[user]');
+ $settings['patterndefault'] = t('users/[user]');
- $settings['patterndefault'] = t('blog/[user]');
+ $settings['patterndefault'] = t('blogs/[user]');
- $settings['patterndefault'] = t('user/[user]/track');
+ $settings['patterndefault'] = t('users/[user]/track');
As far as I can tell, this is RTBC. I'll let folks comment over the next few days and then commit it to the 5.2 branch.
Comment #3
greggleswebchick +1'd the idea, so I committed it. I'll still take feedback, but at least this is a start.
Comment #4
(not verified) commented