Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
Added support for folder-style URLs (see #3921)
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Feb 24, 2012
1 parent f058b27 commit 940bc21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contao/dca/tl_calendar_events.php
Expand Up @@ -191,7 +191,7 @@
'exclude' => true,
'search' => true,
'inputType' => 'text',
'eval' => array('rgxp'=>'alnum', 'unique'=>true, 'spaceToUnderscore'=>true, 'maxlength'=>128, 'tl_class'=>'w50'),
'eval' => array('rgxp'=>'alias', 'unique'=>true, 'spaceToUnderscore'=>true, 'maxlength'=>128, 'tl_class'=>'w50'),
'save_callback' => array
(
array('tl_calendar_events', 'generateAlias')
Expand Down
2 changes: 1 addition & 1 deletion contao/dca/tl_calendar_feed.php
Expand Up @@ -147,7 +147,7 @@
'exclude' => true,
'search' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'rgxp'=>'alnum', 'unique'=>true, 'spaceToUnderscore'=>true, 'maxlength'=>128, 'tl_class'=>'w50'),
'eval' => array('mandatory'=>true, 'rgxp'=>'alias', 'unique'=>true, 'spaceToUnderscore'=>true, 'maxlength'=>128, 'tl_class'=>'w50'),
'save_callback' => array
(
array('tl_calendar_feed', 'checkFeedAlias')
Expand Down

0 comments on commit 940bc21

Please sign in to comment.