Skip to content

Commit a92c147

Browse files
authored
Corrected spelling of 'droping' (#360)
1 parent 1a64846 commit a92c147

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

install/installNewDB.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ function drop_tables(&$dbHandler,$dbTablePrefix,$dbType)
664664
if( in_array($targetTable,$tablesOnDB) )
665665
{
666666
// Need to add option (CASCADE ?) to delete dependent object
667-
echo "Droping $targetTable" . "<br />";
667+
echo "Dropping $targetTable" . "<br />";
668668
$sql="DROP TABLE $targetTable";
669669
$sql .= (($dbType != 'mssql') && ($dbType != 'sqlsrv')) ? " CASCADE " : ' ';
670670
$dbHandler->exec_query($sql);
@@ -690,7 +690,7 @@ function drop_views(&$dbHandler,$dbItemPrefix,$dbType)
690690
if( in_array($target,$itemsOnDB) )
691691
{
692692
// Need to add option (CASCADE ?) to delete dependent object
693-
echo "Droping $target" . "<br />";
693+
echo "Dropping $target" . "<br />";
694694
$sql="DROP VIEW $target";
695695
$sql .= (($dbType != 'mssql') && ($dbType != 'sqlsrv')) ? " CASCADE " : ' ';
696696
$dbHandler->exec_query($sql);

third_party/tinymce/jscripts/tiny_mce/tiny_mce_src.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ TinyMCE_Engine.prototype = {
11611161
/* if (tinyMCE.selectedInstance)
11621162
tinyMCE.selectedInstance.setBaseHREF(null);
11631163
1164-
// Fixes odd MSIE bug where drag/droping elements in a iframe with height 100% breaks
1164+
// Fixes odd MSIE bug where drag/dropping elements in a iframe with height 100% breaks
11651165
// This logic forces the width/height to be in pixels while the user is drag/dropping
11661166
// NOTE: This has been disabled for now since it messes up copy/paste that is far more important than image drag
11671167
if (tinyMCE.isRealIE) {
@@ -7604,4 +7604,3 @@ tinyMCE.add(TinyMCE_Engine, {
76047604
}
76057605

76067606
});
7607-

0 commit comments

Comments
 (0)