Revision 727
Added by thorn over 17 years ago
| trunk/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.7.0 ------------------------------------- |
| 14 |
23-Feb-2008 Thomas Hornik
|
|
| 15 |
# issue with menulink in upgrade-script. Fixed?
|
|
| 14 |
24-Feb-2008 Thomas Hornik
|
|
| 15 |
# issue with menulink in upgrade-script. Fixed.
|
|
| 16 | 16 |
23-Feb-2008 Christian Sommer |
| 17 | 17 |
! suppressed warnings in initialize.php if constant already defined; modified upgrade script to make FCK the new default editor |
| 18 | 18 |
# fixed bug in upgrade script (WBMailer setting) |
| trunk/wb/upgrade-script.php | ||
|---|---|---|
| 489 | 489 |
} |
| 490 | 490 |
// check if we need to create a subdir somewhere |
| 491 | 491 |
$dirs = array(); |
| 492 |
while(dirname($link) != '/' && dirname($link) != '.') {
|
|
| 492 |
while(dirname($link) != '/' && dirname($link) != '.' && dirname($link) != '\\') {
|
|
| 493 | 493 |
$link = dirname($link); |
| 494 | 494 |
$dirs[] = WB_PATH.PAGES_DIRECTORY.$link; |
| 495 | 495 |
} |
| ... | ... | |
| 510 | 510 |
|
| 511 | 511 |
} |
| 512 | 512 |
|
| 513 |
// some code missing to regenerate page_title from link/filename |
|
| 514 |
// for_all_pages: if filename($page_title) != basename($link) {
|
|
| 515 |
// rename $page_title to basename($link) |
|
| 516 |
// } |
|
| 517 |
// This must be done after menu_link-upgrade |
|
| 518 |
// |
|
| 519 |
// Should we really do this? - must be checked |
|
| 520 |
|
|
| 521 |
|
|
| 522 | 513 |
/********************************************************** |
| 523 | 514 |
* - asp - Advanced Spam Protection |
| 524 | 515 |
*/ |
Also available in: Unified diff
issue with menulink in upgrade-script. Fixed.