nodelimit/limitereached not found
Code Rader - October 25, 2006 - 22:11
| Project: | Shoutcast Streaming Server |
| Version: | HEAD |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed |
Description
small typo
around 188
if (_nodelimit_at_max($node->type, $node->uid)) {
drupal_goto("nodelimit/limitreached");
}should be
if (_nodelimit_at_max($node->type, $node->uid)) {
drupal_goto("node/limitreached");
}
#1
I can confirm this bug.
The solution too.
vg
#2
Patch attached.
vg
#3
Patch tested and works as expected.
#4