Bug 583 - Add dropNode() method
: Add dropNode() method
Status: RESOLVED FIXED
: Achievo
Setup
: SVN
: All All
: P3 normal
Assigned To:
:
:
:
:
  Show dependency treegraph
 
Reported: 2005-11-29 08:14 by
Modified: 2006-03-14 15:07 (History)


Attachments
add dropNode() (755 bytes, patch)
2005-11-29 08:15, Golovnya Yury
Details | Diff


Note

You need to log in before you can comment on or make changes to this bug.


Description From 2005-11-29 08:14:25

    
------- Comment #1 From 2005-11-29 08:15:19 -------
Created an attachment (id=168) [details]
add dropNode()
------- Comment #2 From 2006-03-12 17:02:52 -------
Hi Yuri, 
 
implementend this function, but not the one you uploaded :) Check CVS to see 
what I made of it. 
------- Comment #3 From 2006-03-13 09:42:57 -------
Hi, Sandy!
Yes, your code more common... Good team work :))
------- Comment #4 From 2006-03-14 14:02:28 -------
class.setup.inc, $setup->dropSequence() method, near line 907: 
Code: 

$db->query("DELETE FROM ".$db->m_seq_table."WHERE ".$this->m_seq_namefield." 
= '$sequence'");  
 must be 

$db->query("DELETE FROM ".$db->m_seq_table." WHERE ".$db->m_seq_namefield." 
= '$sequence'"); 
------- Comment #5 From 2006-03-14 14:03:32 -------
Just fixed it :)
------- Comment #6 From 2006-03-14 14:05:23 -------
$this->m_seq_namefield => $db->m_seq_namefield also fix?
------- Comment #7 From 2006-03-14 15:07:42 -------
It is now :)