Changeset 455 for trunk/save.php
- Timestamp:
- Apr 13, 2010, 10:03:12 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/save.php
r436 r455 155 155 $next = FollowingTran($TextID, $Table, $GroupId); 156 156 echo('<br /><br />'); 157 $redirecting = mysql_fetch_assoc($Database->SQLCommand('SELECT `Redirecting` FROM `User` WHERE `ID`='.$User->Id)); 157 $DbResult = $System->Database->query('SELECT `Redirecting` FROM `User` WHERE `ID`='.$User->Id) 158 $redirecting = $DbResult->fetch_assoc(); 158 159 159 160 switch($redirecting['Redirecting']) … … 181 182 182 183 // Aktualizace informace o nutnosti načíst XP 183 $ Database->SQLCommand('UPDATE `User` SET `NeedUpdate` = 1 WHERE `ID` = '.$User->Id);184 $System->Database->query('UPDATE `User` SET `NeedUpdate` = 1 WHERE `ID` = '.$User->Id); 184 185 } else echo('Položka nenalezena'); 185 186 } else
Note:
See TracChangeset
for help on using the changeset viewer.