Changeset 439
- Timestamp:
- Oct 13, 2012, 5:56:32 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Forms.php
r438 r439 1 1 <?php 2 2 3 include_once(' form_classes.php');3 include_once('../form_classes.php'); 4 4 include_once('Database.php'); 5 5 -
trunk/Common/User.php
r438 r439 344 344 $Mail->Subject = 'Obnova hesla'; 345 345 $Mail->From = $Config['Web']['Title'].' <noreplay@zdechov.net>'; 346 $Mail-> Recipients[] = $Row['Email'];346 $Mail->AddTo($Row['Email'], $Row['Name']); 347 347 $Mail->AddBody('Požádali jste o zaslání nového hesla na serveru <a href="http://'. 348 348 $Config['Web']['Host'].$Config['Web']['RootFolder'].'">http://'. … … 369 369 if(($NewPassword == $NewPassword2) and ($Hash == $Row['Password'])) 370 370 { 371 $PasswordHash = new PasswordHas t();371 $PasswordHash = new PasswordHash(); 372 372 $Salt = $PasswordHash->GetSalt(); 373 373 $this->Database->update('User', 'Id='.$Row['Id'], array('Password' => $PasswordHash->Hash($NewPassword, $Salt), -
trunk/aktuality/news.php
r312 r439 29 29 $URL = substr($Content, 0, strpos($Content, ' ')); 30 30 else $URL = substr($Content, 0); 31 if(strpos($Content, '<') !== false) 32 $URL = substr($Content, 0, strpos($Content, '<')); 33 else $URL = substr($Content, 0); 34 echo('['.$URL.']'); 31 35 $Result .= '<a href="'.$URL.'">'.$URL.'</a>'; 32 36 $Content = substr($Content, strlen($URL)); -
trunk/mapa.php
r417 r439 1 1 <?php 2 2 3 include_once('global.php'); 4 3 include_once('Common/Global.php'); 5 4 6 5 class WebMapPage extends Page -
trunk/system/generators/linux/iptables.php
r239 r439 1 1 <?php 2 2 if(isset($_SERVER['REMOTE_ADDR'])) die(); 3 include_once('../../ global.php');3 include_once('../../Common/Global.php'); 4 4 5 5 // Generate firewall rules
Note:
See TracChangeset
for help on using the changeset viewer.