|
From: <pdo...@us...> - 2024-03-27 10:47:42
|
Revision: 15017
http://sourceforge.net/p/squirrelmail/code/15017
Author: pdontthink
Date: 2024-03-27 10:47:40 +0000 (Wed, 27 Mar 2024)
Log Message:
-----------
Fix typo
Modified Paths:
--------------
branches/SM-1_4-STABLE/squirrelmail/plugins/calendar/functions.php
Modified: branches/SM-1_4-STABLE/squirrelmail/plugins/calendar/functions.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/plugins/calendar/functions.php 2024-03-27 10:23:03 UTC (rev 15016)
+++ branches/SM-1_4-STABLE/squirrelmail/plugins/calendar/functions.php 2024-03-27 10:47:40 UTC (rev 15017)
@@ -126,7 +126,7 @@
);
foreach($eventpriority as $key => $value) {
- if($keyj=$selected){
+ if($key==$selected){
echo ' <option value="'.$key.'" selected="selected">'.$value."</option>\n";
} else {
echo ' <option value="'.$key.'">'.$value."</option>\n";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|