Posted by greggles on March 3, 2007 at 7:12pm
| Project: | Pathauto |
| Version: | 5.x-2.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | greggles |
| Status: | closed (fixed) |
Issue Summary
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.
Comments
#1
and I consider this critical (and will fix it shortly) now that we've got the 2.x branch I can change defaults again. Yay!
#2
how 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.
#3
webchick +1'd the idea, so I committed it. I'll still take feedback, but at least this is a start.
#4