Changeset 4987
- Timestamp:
- 08/31/07 23:58:53 (4 years ago)
- Files:
-
- modules/branches/2.3/core/functions.inc.php (modified) (1 diff)
- modules/branches/2.3/core/module.xml (modified) (1 diff)
- modules/branches/2.3/core/page.routing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.3/core/functions.inc.php
r4905 r4987 2143 2143 function core_routing_setroutepriority($routepriority, $reporoutedirection, $reporoutekey) 2144 2144 { 2145 global $db ;2145 global $db, $amp_conf; 2146 2146 $counter=-1; 2147 2147 foreach ($routepriority as $tresult) modules/branches/2.3/core/module.xml
r4961 r4987 4 4 <category>Basic</category> 5 5 <name>Core</name> 6 <version>2.3.0. 1</version>6 <version>2.3.0.2</version> 7 7 <candisable>no</candisable> 8 8 <canuninstall>no</canuninstall> 9 9 <changelog> 10 *2.3.0.2* #2330 allow '_' in route name changes, fix missing global variable. 10 11 *2.3.0.1* fix support link 11 12 *2.3.0.0* Final Release modules/branches/2.3/core/page.routing.php
r4905 r4987 296 296 var newname = prompt("<?php echo _("Rename route")?> " + document.getElementById('routename').value + " <?php echo _("to:")?>"); 297 297 if (newname == null) return; 298 } while (!newname.match('^[a-zA-Z0-9][a-zA-Z0-9 ]+$') && !alert("<?php echo _("Route name is invalid...please try again")?>"));298 } while (!newname.match('^[a-zA-Z0-9][a-zA-Z0-9_]+$') && !alert("<?php echo _("Route name is invalid...please try again")?>")); 299 299 300 300 document.getElementById('newroutename').value = newname;
