alecpl
2009-06-01 0ce119869d77215665be6850099cc229b5720963
- use preg functions instead of ereg functions


2 files modified
6 ■■■■ changed files
index.php 2 ●●● patch | view | raw | blame | history
installer/rcube_install.php 4 ●●●● patch | view | raw | blame | history
index.php
@@ -221,7 +221,7 @@
    $action_map[$RCMAIL->task][$RCMAIL->action] : strtr($RCMAIL->action, '-', '_') . '.inc';
  // execute a plugin action
  if (eregi('^plugin.', $RCMAIL->action)) {
  if (preg_match('/^plugin\./', $RCMAIL->action)) {
    $RCMAIL->plugins->exec_action($RCMAIL->action);
    break;
  }
installer/rcube_install.php
@@ -551,11 +551,11 @@
    if ($lines = @file($fname, FILE_SKIP_EMPTY_LINES)) {
      $buff = '';
      foreach ($lines as $i => $line) {
        if (eregi('^--', $line))
        if (preg_match('/^--/', $line))
          continue;
          
        $buff .= $line . "\n";
        if (eregi(';$', trim($line))) {
        if (preg_match('/;$/', trim($line))) {
          $DB->query($buff);
          $buff = '';
          if ($this->get_error())