Changeset 5206
- Timestamp:
- 11/03/07 13:33:28 (1 year ago)
- Files:
-
- modules/branches/2.4 (modified) (1 prop)
- modules/branches/2.4/core/functions.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4
- Property svnmerge-integrated changed from /modules/branches/2.3:1-5080,5111,5128,5130,5155,5157,5159,5163,5165,5186-5188,5190,5192,5194-5196 to /modules/branches/2.3:1-5080,5111,5128,5130,5155,5157,5159,5163,5165,5186-5188,5190,5192,5194-5196,5205
modules/branches/2.4/core/functions.inc.php
r5197 r5206 1338 1338 $thisexten = isset($thisexten) ? $thisexten : ''; 1339 1339 1340 if (trim($ thisexten) == '' ) {1340 if (trim($extension) == '' ) { 1341 1341 echo "<script>javascript:alert('"._("You must put in an extension (or user) number")."');</script>"; 1342 1342 return false; … … 1348 1348 foreach($extens as $exten) { 1349 1349 if ($exten[0]===$extension) { 1350 echo "<script>javascript:alert('". _("This user")." ({$thisexten}) "._("or extension")." ({$extension}) "._("is already in use")."');</script>";1350 echo "<script>javascript:alert('".sprintf(_("This user/extension %s is already in use"),$extension)."');</script>"; 1351 1351 return false; 1352 1352 }
