17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1939 Views |
-
Unigue URL Segment in SiteTree::write()

6 August 2007 at 5:49pm
Hi,
I made a page "My 2nd Page" and my URLSegment was "my-2nd-page", then I have duplicated this page, and my URL segment has been changed to "mynd-page-2" (wrong). I made the patch:--- SiteTree.php.orig 2007-08-06 17:48:37.000000000 +1200
+++ SiteTree.php 2007-08-06 17:47:06.000000000 +1200
@@ -419,7 +419,7 @@
$count = 1;
while(DataObject::get_one("SiteTree", "URLSegment = '$this->URLSegment' $idFilter")) {
$count++;
- $this->URLSegment = ereg_replace('-[0-9]+','', $this->URLSegment) . "-$count";
+ $this->URLSegment = ereg_replace('-[0-9]+$','', $this->URLSegment) . "-$count";
}
// If the URLSegment has been changed, rewrite linksAnd then duplication made URLSegment "my-2nd-page-2" (is that better?)
-
Re: Unigue URL Segment in SiteTree::write()

6 August 2007 at 10:15pm
That sounds good to me. I guess it was a miss that it did what it was originally doing, with a number already in the URL segment. Andy, could you make sure this is patched in the main branch?
Sean
| 1939 Views | ||
|
Page:
1
|
Go to Top |



