Plugin Directory

Changeset 1165310


Ignore:
Timestamp:
05/21/2015 11:07:02 PM (10 years ago)
Author:
Malcolm-OPH
Message:

Release 5.0.9

Location:
stageshow/trunk
Files:
1 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • stageshow/trunk/include/stageshow_dbase_api.php

    r1142412 r1165310  
    393393        function clearAll()
    394394        {
    395             parent::clearAll($dropTable);
     395            parent::clearAll();
    396396
    397397            $this->DropTable(STAGESHOW_SHOWS_TABLE);
     
    675675        }
    676676       
    677        
    678677        function CanDeleteShow($showEntry)
    679678        {
     
    698697            return $canDelete;     
    699698        }
    700        
    701699       
    702700        function renameColumn($table_name, $oldColName, $newColName)
     
    861859        }
    862860       
    863                
    864                
    865                
    866                
    867                
    868861        function IsPriceValid($newPriceValue, $result)
    869862        {
     
    12791272            return $sql;
    12801273        }
    1281                
    1282        
    12831274       
    12841275        function AddEMailFields($EMailTemplate, $saleDetails)
  • stageshow/trunk/include/stageshow_trolley_sales.php

    r1161008 r1165310  
    429429                    break;                 
    430430            }
    431            
     431
    432432            $buttonTypeDef = parent::GetButtonTypeDef($buttonID, $buttonName, $buttonType, $buttonClasses);             
    433433            $buttonTypeDef .= $buttonSrc;
  • stageshow/trunk/include/stageshowlib_sales_dbase_api.php

    r1149942 r1165310  
    338338        function clearAll()
    339339        {
    340             parent::clearAll($dropTable);
     340            parent::clearAll();
    341341
    342342            $this->DropTable($this->DBTables->Sales);
  • stageshow/trunk/include/stageshowlib_salesplugin_trolley.php

    r1162572 r1165310  
    714714            if ($buttonType == 'image')
    715715            {
    716                 $buttonClasses .= ' '.$this->myDomain.'-button-image ';             
    717             }
    718 
    719             $buttonClasses .= $this->cssTrolleyBaseID.'-ui ';
    720             $buttonClasses .= $this->cssTrolleyBaseID.'-button ';
     716                $buttonClasses .= ' '.$this->myDomain.'-button-image';             
     717            }
     718
     719            $buttonClasses .= ' '.$this->cssTrolleyBaseID.'-ui';
     720            $buttonClasses .= ' '.$this->cssTrolleyBaseID.'-button';
    721721
    722722            $buttonTypeDef .= ' id="'.$buttonName.'" name="'.$buttonName.'"';                   
     
    13341334                $runningTotal = $myDBaseObj->FormatCurrency($runningTotal);             
    13351335                $trolleyTotal = $myDBaseObj->FormatCurrency($trolleyTotal);
    1336                
     1336
    13371337                echo '<tr class="'.$this->cssTrolleyBaseID.'-totalrow">'."\n";
    13381338                echo '<td colspan="'.($this->trolleyHeaderCols-4).'">&nbsp;</td>'."\n";
  • stageshow/trunk/include/stageshowlib_table.php

    r1163209 r1165310  
    310310        }
    311311
     312        function AddTextBoxToTable($result, $inputName, $value, $col=0, $newRow = false)
     313        {
     314            $inputName .= $this->GetRecordID($result).$this->GetDetailID($result);             
     315
     316            $params  = " name=$inputName";
     317            $params .= " id=$inputName";
     318           
     319            $content = '<textarea rows="1" cols="60" '.$params.'>'.$value.'</textarea>';
     320           
     321            $inputName = 'curr'.$inputName;
     322           
     323            $params  = " name=$inputName";
     324            $params .= " id=$inputName";
     325            $params .= " value=\"$value\"";
     326           
     327            $content .= "<input type=\"hidden\" $params />";
     328           
     329            $this->AddToTable($result, $content, $col, $newRow);
     330        }
     331       
    312332        function AddInputToTable($result, $inputName, $maxlength, $value, $col=0, $newRow = false, $extraParams = '')
    313333        {
     
    14081428                    case self::TABLEENTRY_FLOAT:
    14091429                    case self::TABLEENTRY_DATETIME:
    1410                     //case self::TABLEENTRY_TEXTBOX:
     1430                    case self::TABLEENTRY_TEXTBOX:
    14111431                    case self::TABLEENTRY_SELECT:
    14121432                    case self::TABLEENTRY_VALUE:
     
    15071527                            break;
    15081528                           
    1509                         //case self::TABLEENTRY_TEXTBOX:
    1510                        
    15111529                        case self::TABLEENTRY_SELECT:
    15121530                            $options = self::GetSelectOptsArray($columnDef, $result);                           
     
    15221540                            // Fall into next case ...
    15231541                           
     1542                        case self::TABLEENTRY_TEXTBOX:
     1543                            $this->AddTextBoxToTable($result, $columnId, $currVal, 0);
     1544                            break;
     1545                       
    15241546                        case self::TABLEENTRY_TEXT:
    15251547                        case self::TABLEENTRY_INTEGER:
  • stageshow/trunk/lang/stageshow.pot

    r1163209 r1165310  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: stageshow 5.0.8 \n"
     5"Project-Id-Version: stageshow 5.0.9 \n"
    66"Report-Msgid-Bugs-To: http://wordpress.org/tag/stageshow\n"
    7 "POT-Creation-Date: 2015-05-19 09:03:49+00:00\n"
     7"POT-Creation-Date: 2015-05-21 21:16:36+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    432432#: include\stageshowlib_sales_dbase_api.php:495 include\stageshowlib_salesplugin.php:483
    433433#: include\stageshow_trolley_sales.php:498 stageshow.php:20
    434 #: stageshowgold_main.php:156
     434#: stageshowgold_main.php:154
    435435msgid "Booking Fee"
    436436msgstr ""
     
    442442#: admin\stageshow_tdt_export.php:113 include\stageshowlib_sales_dbase_api.php:496
    443443#: include\stageshowlib_salesplugin.php:492 stageshow.php:41
    444 #: stageshowgold_main.php:157 stageshowplus_trolley.php:120
     444#: stageshowgold_main.php:155 stageshowplus_trolley.php:120
    445445msgid "Donation"
    446446msgstr ""
     
    640640
    641641#: admin\stageshowgold_manage_seating.php:39
    642 #: include\stageshowlib_gatewaysalesadmin.php:37 include\stageshowlib_table.php:1032
     642#: include\stageshowlib_gatewaysalesadmin.php:37 include\stageshowlib_table.php:1052
    643643msgid "Details"
    644644msgstr ""
     
    10031003#: include\stageshowlib_salesplugin.php:501 include\stageshowlib_salesplugin.php:556
    10041004#: include\stageshowlib_salesplugin.php:590 include\stageshowlib_salesplugin.php:628
    1005 #: stageshowgold_main.php:128 stageshowgold_main.php:136
    1006 #: stageshowgold_main.php:231 stageshowplus_main.php:301
     1005#: stageshowgold_main.php:126 stageshowgold_main.php:134
     1006#: stageshowgold_main.php:229 stageshowplus_main.php:301
    10071007msgid "Cannot Checkout"
    10081008msgstr ""
     
    11791179msgstr ""
    11801180
    1181 #: include\stageshowlib_table.php:550
     1181#: include\stageshowlib_table.php:570
    11821182msgid "Bulk Actions"
    11831183msgstr ""
    11841184
    1185 #: include\stageshowlib_table.php:560
     1185#: include\stageshowlib_table.php:580
    11861186msgid "Apply"
    11871187msgstr ""
    11881188
    1189 #: include\stageshowlib_table.php:763
     1189#: include\stageshowlib_table.php:783
    11901190msgid "1 item"
    11911191msgid_plural "%s items"
     
    11931193msgstr[1] ""
    11941194
    1195 #: include\stageshowlib_table.php:779
     1195#: include\stageshowlib_table.php:799
    11961196msgid "Go to the first page"
    11971197msgstr ""
    11981198
    1199 #: include\stageshowlib_table.php:786
     1199#: include\stageshowlib_table.php:806
    12001200msgid "Go to the previous page"
    12011201msgstr ""
    12021202
    1203 #: include\stageshowlib_table.php:797
     1203#: include\stageshowlib_table.php:817
    12041204msgid "Current page"
    12051205msgstr ""
    12061206
    1207 #: include\stageshowlib_table.php:805
     1207#: include\stageshowlib_table.php:825
    12081208msgid "of"
    12091209msgstr ""
    12101210
    1211 #: include\stageshowlib_table.php:809
     1211#: include\stageshowlib_table.php:829
    12121212msgid "Go to the next page"
    12131213msgstr ""
    12141214
    1215 #: include\stageshowlib_table.php:816
     1215#: include\stageshowlib_table.php:836
    12161216msgid "Go to the last page"
    12171217msgstr ""
    12181218
    1219 #: include\stageshowlib_table.php:1155
     1219#: include\stageshowlib_table.php:1175
    12201220msgid "Show all Events"
    12211221msgstr ""
    12221222
    1223 #: include\stageshowlib_table.php:1284 include\stageshowlib_table.php:1470
     1223#: include\stageshowlib_table.php:1304 include\stageshowlib_table.php:1490
    12241224msgid "Yes"
    12251225msgstr ""
    12261226
    1227 #: include\stageshowlib_table.php:1284 include\stageshowlib_table.php:1470
     1227#: include\stageshowlib_table.php:1304 include\stageshowlib_table.php:1490
    12281228msgid "No"
    12291229msgstr ""
     
    12731273msgstr ""
    12741274
    1275 #: include\stageshow_dbase_api.php:706
     1275#: include\stageshow_dbase_api.php:704
    12761276msgid "DB Error"
    12771277msgstr ""
    12781278
    1279 #: include\stageshow_dbase_api.php:706
     1279#: include\stageshow_dbase_api.php:704
    12801280msgid "Column does not exist"
    12811281msgstr ""
    12821282
    1283 #: include\stageshow_dbase_api.php:873
     1283#: include\stageshow_dbase_api.php:866
    12841284msgid "Price Not Specified"
    12851285msgstr ""
    12861286
    1287 #: include\stageshow_dbase_api.php:879
     1287#: include\stageshow_dbase_api.php:872
    12881288msgid "Invalid Price Entry"
    12891289msgstr ""
    12901290
    1291 #: include\stageshow_dbase_api.php:885
     1291#: include\stageshow_dbase_api.php:878
    12921292msgid "Price Entry cannot be negative"
    12931293msgstr ""
    12941294
    1295 #: include\stageshow_jquery_email.php:120 stageshowgold_main.php:252
     1295#: include\stageshow_jquery_email.php:120 stageshowgold_main.php:250
    12961296#: stageshowplus_main.php:296
    12971297msgid "Confirmation EMail sent to"
     
    19371937msgstr ""
    19381938
    1939 #: stageshowgold_main.php:129
     1939#: stageshowgold_main.php:127
    19401940msgid "Database Access Error"
    19411941msgstr ""
    19421942
    1943 #: stageshowgold_main.php:137
     1943#: stageshowgold_main.php:135
    19441944msgid "Error getting purchaser details from PayPal"
    19451945msgstr ""
    19461946
    1947 #: stageshowgold_main.php:191 stageshowgold_main.php:219
     1947#: stageshowgold_main.php:189 stageshowgold_main.php:217
    19481948msgid "Sale Cancelled"
    19491949msgstr ""
    19501950
    1951 #: stageshowgold_main.php:219
     1951#: stageshowgold_main.php:217
    19521952msgid "Timeout"
    19531953msgstr ""
    19541954
    1955 #: stageshowgold_main.php:235
     1955#: stageshowgold_main.php:233
    19561956msgid "Could not get sale details from PayPal"
    19571957msgstr ""
    19581958
    1959 #: stageshowgold_main.php:252
     1959#: stageshowgold_main.php:250
    19601960msgid "Sale Complete"
    19611961msgstr ""
    19621962
    1963 #: stageshowgold_main.php:290
     1963#: stageshowgold_main.php:288
    19641964msgid "One or more seats selected is no longer available"
    19651965msgstr ""
  • stageshow/trunk/readme.txt

    r1163209 r1165310  
    55Requires at least: 3.0
    66Tested up to: 4.2.2
    7 Stable tag: 5.0.8
     7Stable tag: 5.0.9
    88
    99StageShow adds the facility for an online Box-Office for Small Theatres/Drama Groups, records sales, validates tickets and provides sales downloads.
     
    189189
    190190* Version History for StageShow Plugins
     191
     192= 5.0.9 (21/05/2015) =
     193* Bug Fix: Bug Fix: Remove button HTML class definitions merged
     194* Bug Fix: Sample Database seating zoneID error (StageShowGold)
     195* Zone Spec made (virtually) unlimited size (StageShowGold)
     196* Security Vulnerability Fixed
    191197
    192198= 5.0.8 (19/05/2015) =
  • stageshow/trunk/stageshow.php

    r1163209 r1165310  
    33Plugin Name: StageShow
    44Plugin URI: http://www.corondeck.co.uk/StageShow/WPOrg
    5 Version: 5.0.8
     5Version: 5.0.9
    66Author: Malcolm Shergold
    77Author URI: http://www.corondeck.co.uk
Note: See TracChangeset for help on using the changeset viewer.