Changeset d5f94f95381f7ff81405fd7b3098541f9edcaf90
- Timestamp:
- 05/19/07 17:20:55
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1179588055 +0200
- git-parent:
[6d46dd0048d56567885155baa3de178ef5776cd9]
- git-author:
- Christopher Jung <bktheg@web.de> 1179588055 +0200
- Message:
Der Titel einer PM ist auf 60 Zeichen begrenzt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9f3185b |
rd5f94f9 |
|
| 531 | 531 | } |
|---|
| 532 | 532 | |
|---|
| | 533 | if( title.length() > 60 ) { |
|---|
| | 534 | title = title.substring(0,60); |
|---|
| | 535 | } |
|---|
| | 536 | |
|---|
| 533 | 537 | if( special.equals("admin") && (user.getAccessLevel() < 30) ) { |
|---|
| 534 | 538 | special = ""; |
|---|
| … | … | |
| 1011 | 1015 | } |
|---|
| 1012 | 1016 | |
|---|
| | 1017 | if( title.length() > 60 ) { |
|---|
| | 1018 | title = title.substring(0,60); |
|---|
| | 1019 | } |
|---|
| | 1020 | |
|---|
| 1013 | 1021 | if( special.equals("admin") && (user.getAccessLevel() < 30) ) { |
|---|
| 1014 | 1022 | special = ""; |
|---|