Changeset 7252
- Timestamp:
- 11/12/08 09:25:55 (4 years ago)
- Files:
-
- modules/branches/2.4 (modified) (1 prop)
- modules/branches/2.4/conferences/module.xml (modified) (1 diff)
- modules/branches/2.4/conferences/page.conferences.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.4
- Property svnmerge-integrated changed from /modules/branches/2.3:1-5233,5245,5333,5336 /modules/branches/2.5:1-5852,5880,5930,5995,6016-6017,6030-6031,6142,6218,6291,6361,6363,6413-6414,6422,6428-6430,6442-6443,6557,6710,6714-6715,6969-6970,6984 to /modules/branches/2.3:1-5233,5245,5333,5336 /modules/branches/2.5:1-5852,5880,5930,5995,6016-6017,6030-6031,6142,6218,6291,6361,6363,6413-6414,6422,6428-6430,6442-6443,6557,6710,6714-6715,6969-6970,6984,7248
modules/branches/2.4/conferences/module.xml
r6445 r7252 2 2 <rawname>conferences</rawname> 3 3 <name>Conferences</name> 4 <version>2.4.0. 3</version>4 <version>2.4.0.4</version> 5 5 <type>setup</type> 6 6 <category>Internal Options & Configuration</category> 7 7 <description>Allow creation of conference rooms (meet-me) where multiple people can talk together.</description> 8 8 <changelog> 9 *2.4.0.4* #3392 can't delete or edit if numbered 0 9 10 *2.4.0.3* #3087 add hook to module code 10 11 *2.4.0.2* #2604, #2843 fix mal-formed html tags, Russian Translation modules/branches/2.4/conferences/page.conferences.php
r6423 r7252 76 76 echo '<br><h3>'._("Conference").' '.$extdisplay.' '._("deleted").'!</h3><br><br><br><br><br><br><br><br>'; 77 77 } else { 78 if ($extdisplay ){78 if ($extdisplay != ""){ 79 79 //get details for this meetme 80 80 $thisMeetme = conferences_get($extdisplay); … … 85 85 $delURL = $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'].'&action=delete'; 86 86 ?> 87 <?php if ($extdisplay ){ ?>87 <?php if ($extdisplay != ""){ ?> 88 88 <h2><?php echo _("Conference:")." ". $extdisplay; ?></h2> 89 89 <a href="<?php echo $delURL ?>"><?php echo _("Delete Conference")?> <?php echo $extdisplay; ?></a><br /> … … 109 109 <input type="hidden" name="action" value="<?php echo ($extdisplay ? 'edit' : 'add') ?>"> 110 110 <table> 111 <tr><td colspan="2"><h5><?php echo ($extdisplay ? _("Edit Conference") : _("Add Conference")) ?><hr></h5></td></tr>112 <tr> 113 <?php if ($extdisplay ){ ?>111 <tr><td colspan="2"><h5><?php echo ($extdisplay != "" ? _("Edit Conference") : _("Add Conference")) ?><hr></h5></td></tr> 112 <tr> 113 <?php if ($extdisplay != ""){ ?> 114 114 <input type="hidden" name="account" value="<?php echo $extdisplay; ?>"> 115 115 <?php } else { ?>
