Posted by Code Rader on October 25, 2006 at 10:11pm
| Project: | Shoutcast Streaming Server Statistics |
| Version: | master |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
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");
}
Comments
#1
I can confirm this bug.
The solution too.
vg
#2
Patch attached.
vg
#3
Patch tested and works as expected.
#4