Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. Source
  2.  
  3. 387 $array_spec = $this->indexList[$table][$index_alt]['spec'];
  4. 388 } else {
  5. 389 $array_spec = $this->indexList[$table][$index_alt];
  6. 390 }
  7. 391 }
  8. 392 }
  9. 393
  10. 394 if($newTable || !isset($this->indexList[$table][$index_alt])) {
  11. 395 $this->transCreateIndex($table, $index, $spec);
  12. 396 $this->alterationMessage("Index $table.$index: created as $spec","created");
  13. 397 } else if($array_spec != DB::getConn()->convertIndexSpec($spec)) {
  14. 398 $this->transAlterIndex($table, $index, $spec);
  15. 399 $spec_msg=DB::getConn()->convertIndexSpec($spec);
  16. 400 $this->alterationMessage("Index $table.$index: changed to $spec_msg <i style=\"color: #AAA\">(from {$array_spec})</i>","changed");
  17. 401 }
  18. 402 }
  19. Trace
  20.  
  21.  
  22. Notice: Array to string conversion in /home/spaceships/sapphire/dev/Backtrace.php on line 134
  23.  
  24. Notice: Array to string conversion in /home/spaceships/sapphire/dev/Backtrace.php on line 134
  25.  
  26. Notice: Array to string conversion in /home/spaceships/sapphire/dev/Backtrace.php on line 134
  27.  
  28. Notice: Array to string conversion in /home/spaceships/sapphire/dev/Backtrace.php on line 134
  29.  
  30. Notice: Array to string conversion in /home/spaceships/sapphire/dev/Backtrace.php on line 134
  31. SS_Database->requireIndex(VideoTourPage_versions,RecordID_Version,Array)
  32. Line 327 of Database.php
  33. SS_Database->requireTable(VideoTourPage_versions,Array,Array,1,,)
  34. Line 246 of DB.php
  35. DB::requireTable(VideoTourPage_versions,Array,Array)
  36. Line 348 of Versioned.php
  37. Versioned->augmentDatabase(,,,,,,)
  38. Line 963 of Object.php
  39. Object->extend(augmentDatabase,)
  40. Line 3012 of DataObject.php
  41. DataObject->requireTable()
  42. Line 213 of DatabaseAdmin.php
  43. DatabaseAdmin->doBuild(,1)
  44. Line 106 of DatabaseAdmin.php
  45. DatabaseAdmin->build(SS_HTTPRequest)
  46. Line 193 of Controller.php
  47. Controller->handleAction(SS_HTTPRequest)
  48. Line 143 of RequestHandler.php
  49. RequestHandler->handleRequest(SS_HTTPRequest)
  50. Line 147 of Controller.php
  51. Controller->handleRequest(SS_HTTPRequest)
  52. Line 134 of DevelopmentAdmin.php
  53. DevelopmentAdmin->build(SS_HTTPRequest)
  54. Line 143 of RequestHandler.php
  55. RequestHandler->handleRequest(SS_HTTPRequest)
  56. Line 147 of Controller.php
  57. Controller->handleRequest(SS_HTTPRequest)
  58. Line 282 of Director.php
  59. Director::handleRequest(SS_HTTPRequest,Session)
  60. Line 125 of Director.php
  61. Director::direct(/dev/build)
  62. Line 127 of main.php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement